diff --git a/.github/ISSUE_TEMPLATE/bug.yaml b/.github/ISSUE_TEMPLATE/bug.yaml index 9b988dccb..48312828b 100644 --- a/.github/ISSUE_TEMPLATE/bug.yaml +++ b/.github/ISSUE_TEMPLATE/bug.yaml @@ -37,6 +37,7 @@ body: label: "🎲 Appwrite version" description: "What version of Appwrite are you running?" options: + - Version 1.0.0-RC1 - Version 0.15.x - Version 0.14.x - Version 0.13.x diff --git a/app/config/variables.php b/app/config/variables.php index 9ca42c3e8..36d2446e8 100644 --- a/app/config/variables.php +++ b/app/config/variables.php @@ -170,7 +170,7 @@ return [ ], [ 'name' => '_APP_USAGE_AGGREGATION_INTERVAL', - 'description' => 'Deprecated since 0.16.0, use `_APP_USAGE_TIMESERIES_INTERVAL` and `_APP_USAGE_DATABASE_INTERVAL` instead.', + 'description' => 'Deprecated since 1.0.0-RC1, use `_APP_USAGE_TIMESERIES_INTERVAL` and `_APP_USAGE_DATABASE_INTERVAL` instead.', 'introduction' => '0.10.0', 'default' => '30', 'required' => false, @@ -180,7 +180,7 @@ return [ [ 'name' => '_APP_USAGE_TIMESERIES_INTERVAL', 'description' => 'Interval value containing the number of seconds that the Appwrite usage process should wait before aggregating stats and syncing it to Appwrite Database from Timeseries Database. The default value is 30 seconds.', - 'introduction' => '0.16.0', + 'introduction' => '1.0.0-RC1', 'default' => '30', 'required' => false, 'question' => '', @@ -189,7 +189,7 @@ return [ [ 'name' => '_APP_USAGE_DATABASE_INTERVAL', 'description' => 'Interval value containing the number of seconds that the Appwrite usage process should wait before aggregating stats from data in Appwrite Database. The default value is 15 minutes.', - 'introduction' => '0.16.0', + 'introduction' => '1.0.0-RC1', 'default' => '900', 'required' => false, 'question' => '', @@ -825,7 +825,7 @@ return [ [ 'name' => '_APP_MAINTENANCE_RETENTION_CACHE', 'description' => 'The maximum duration (in seconds) upto which to retain cached files. The default value is 2592000 seconds (30 days).', - 'introduction' => '0.16.0', + 'introduction' => '1.0.0-RC1', 'default' => '2592000', 'required' => false, 'question' => '', diff --git a/app/init.php b/app/init.php index 9faa0eec2..c24eae3b4 100644 --- a/app/init.php +++ b/app/init.php @@ -94,8 +94,8 @@ const APP_LIMIT_WRITE_RATE_DEFAULT = 60; // Default maximum write rate per rate const APP_LIMIT_WRITE_RATE_PERIOD_DEFAULT = 60; // Default maximum write rate period in seconds const APP_KEY_ACCCESS = 24 * 60 * 60; // 24 hours const APP_CACHE_UPDATE = 24 * 60 * 60; // 24 hours -const APP_CACHE_BUSTER = 402; -const APP_VERSION_STABLE = '0.15.3'; +const APP_CACHE_BUSTER = 403; +const APP_VERSION_STABLE = '1.0.0-RC1'; const APP_DATABASE_ATTRIBUTE_EMAIL = 'email'; const APP_DATABASE_ATTRIBUTE_ENUM = 'enum'; const APP_DATABASE_ATTRIBUTE_IP = 'ip'; diff --git a/app/tasks/sdks.php b/app/tasks/sdks.php index b000cc748..5403b5241 100644 --- a/app/tasks/sdks.php +++ b/app/tasks/sdks.php @@ -30,7 +30,7 @@ $cli $production = ($git) ? (Console::confirm('Type "Appwrite" to push code to production git repos') == 'Appwrite') : false; $message = ($git) ? Console::confirm('Please enter your commit message:') : ''; - if (!in_array($version, ['0.6.x', '0.7.x', '0.8.x', '0.9.x', '0.10.x', '0.11.x', '0.12.x', '0.13.x', '0.14.x', '0.15.x', 'latest'])) { + if (!in_array($version, ['0.6.x', '0.7.x', '0.8.x', '0.9.x', '0.10.x', '0.11.x', '0.12.x', '0.13.x', '0.14.x', '0.15.x', '1.0.0-RC1', 'latest'])) { throw new Exception('Unknown version given'); } diff --git a/composer.lock b/composer.lock index b26b70038..6018d72a4 100644 --- a/composer.lock +++ b/composer.lock @@ -5386,5 +5386,5 @@ "platform-overrides": { "php": "8.0" }, - "plugin-api-version": "2.2.0" + "plugin-api-version": "2.3.0" }