From d3daa2be321775f1069aa2554d01331976731799 Mon Sep 17 00:00:00 2001 From: Torsten Dittmann Date: Tue, 27 Jul 2021 14:43:08 +0200 Subject: [PATCH] feat(release): prepare 0.9.3 --- CHANGES.md | 6 ++++++ README.md | 6 +++--- app/init.php | 2 +- src/Appwrite/Migration/Migration.php | 1 + 4 files changed, 11 insertions(+), 4 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index ca647e748..c6e74d852 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,9 @@ +# Version 0.9.3 + +## Bugs + +- Fixed Abuse Limit keys for JWT and E-Mail confirmation (#1434) + # Version 0.9.2 ## Bugs diff --git a/README.md b/README.md index 895da87d6..c0c5077e0 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ docker run -it --rm \ --volume /var/run/docker.sock:/var/run/docker.sock \ --volume "$(pwd)"/appwrite:/usr/src/code/appwrite:rw \ --entrypoint="install" \ - appwrite/appwrite:0.9.1 + appwrite/appwrite:0.9.3 ``` ### Windows @@ -68,7 +68,7 @@ docker run -it --rm ^ --volume //var/run/docker.sock:/var/run/docker.sock ^ --volume "%cd%"/appwrite:/usr/src/code/appwrite:rw ^ --entrypoint="install" ^ - appwrite/appwrite:0.9.1 + appwrite/appwrite:0.9.3 ``` #### PowerShell @@ -78,7 +78,7 @@ docker run -it --rm , --volume /var/run/docker.sock:/var/run/docker.sock , --volume ${pwd}/appwrite:/usr/src/code/appwrite:rw , --entrypoint="install" , - appwrite/appwrite:0.9.1 + appwrite/appwrite:0.9.3 ``` Once the Docker installation completes, go to http://localhost to access the Appwrite console from your browser. Please note that on non-linux native hosts, the server might take a few minutes to start after installation completes. diff --git a/app/init.php b/app/init.php index 872b1ba91..d0271e2c4 100644 --- a/app/init.php +++ b/app/init.php @@ -48,7 +48,7 @@ const APP_MODE_DEFAULT = 'default'; const APP_MODE_ADMIN = 'admin'; const APP_PAGING_LIMIT = 12; const APP_CACHE_BUSTER = 150; -const APP_VERSION_STABLE = '0.9.2'; +const APP_VERSION_STABLE = '0.9.3'; const APP_STORAGE_UPLOADS = '/storage/uploads'; const APP_STORAGE_FUNCTIONS = '/storage/functions'; const APP_STORAGE_CACHE = '/storage/cache'; diff --git a/src/Appwrite/Migration/Migration.php b/src/Appwrite/Migration/Migration.php index 8eae515b9..9f5d12d47 100644 --- a/src/Appwrite/Migration/Migration.php +++ b/src/Appwrite/Migration/Migration.php @@ -41,6 +41,7 @@ abstract class Migration '0.9.0' => 'V08', '0.9.1' => 'V08', '0.9.2' => 'V08', + '0.9.3' => 'V08', ]; /**