1
0
Fork 0
mirror of synced 2024-05-17 03:02:35 +12:00

feat: prepare 1.0.1 release

This commit is contained in:
Torsten Dittmann 2022-09-14 21:03:00 +02:00
parent 192617c9ac
commit 95d322dc36
3 changed files with 4 additions and 3 deletions

View file

@ -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

View file

@ -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';

View file

@ -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',
];
/**