From 95d322dc3609feb1a1bd5e98557a4b3788b883ad Mon Sep 17 00:00:00 2001 From: Torsten Dittmann Date: Wed, 14 Sep 2022 21:03:00 +0200 Subject: [PATCH] feat: prepare 1.0.1 release --- .github/ISSUE_TEMPLATE/bug.yaml | 2 +- app/init.php | 2 +- src/Appwrite/Migration/Migration.php | 3 ++- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug.yaml b/.github/ISSUE_TEMPLATE/bug.yaml index 48312828b..dbd8239d5 100644 --- a/.github/ISSUE_TEMPLATE/bug.yaml +++ b/.github/ISSUE_TEMPLATE/bug.yaml @@ -37,7 +37,7 @@ body: label: "🎲 Appwrite version" description: "What version of Appwrite are you running?" options: - - Version 1.0.0-RC1 + - Version 1.0.x - Version 0.15.x - Version 0.14.x - Version 0.13.x diff --git a/app/init.php b/app/init.php index 5cdcc82dd..3c9f785f9 100644 --- a/app/init.php +++ b/app/init.php @@ -95,7 +95,7 @@ const APP_LIMIT_WRITE_RATE_PERIOD_DEFAULT = 60; // Default maximum write rate pe const APP_KEY_ACCCESS = 24 * 60 * 60; // 24 hours const APP_CACHE_UPDATE = 24 * 60 * 60; // 24 hours const APP_CACHE_BUSTER = 500; -const APP_VERSION_STABLE = '1.0.0'; +const APP_VERSION_STABLE = '1.0.1'; const APP_DATABASE_ATTRIBUTE_EMAIL = 'email'; const APP_DATABASE_ATTRIBUTE_ENUM = 'enum'; const APP_DATABASE_ATTRIBUTE_IP = 'ip'; diff --git a/src/Appwrite/Migration/Migration.php b/src/Appwrite/Migration/Migration.php index a17a96247..c35f5c5df 100644 --- a/src/Appwrite/Migration/Migration.php +++ b/src/Appwrite/Migration/Migration.php @@ -42,7 +42,8 @@ abstract class Migration */ public static array $versions = [ '1.0.0-RC1' => 'V15', - '1.0.0' => 'V15' + '1.0.0' => 'V15', + '1.0.1' => 'V15', ]; /**