1
0
Fork 0
mirror of synced 2024-06-01 18:39:57 +12:00

Merge pull request #3840 from appwrite/feat-prepare-1.0.1-release

feat: prepare 1.0.1 release
This commit is contained in:
Torsten Dittmann 2022-09-14 21:07:42 +02:00 committed by GitHub
commit 939b5a00f5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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',
];
/**