From 17118e69f950fabae1a2cb011c9d46cef43047fe Mon Sep 17 00:00:00 2001 From: Torsten Dittmann Date: Mon, 6 Sep 2021 15:45:43 +0200 Subject: [PATCH 1/2] feat(release): 0.10.2 --- CHANGES.md | 5 +++++ README.md | 6 +++--- app/init.php | 2 +- src/Appwrite/Migration/Migration.php | 1 + 4 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index a01ddb708..3942452f2 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,8 @@ +# Version 0.10.2 + +## Bugs +- Fixed SSL certificates status not being update (#1592) +- Fixed failing team invites on console (#1580) # Version 0.10.1 ## Bugs diff --git a/README.md b/README.md index 48e4d5272..6c8f6af54 100644 --- a/README.md +++ b/README.md @@ -57,7 +57,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.10.1 + appwrite/appwrite:0.10.2 ``` ### Windows @@ -69,7 +69,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.10.1 + appwrite/appwrite:0.10.2 ``` #### PowerShell @@ -79,7 +79,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.10.1 + appwrite/appwrite:0.10.2 ``` 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 aa112b483..c9367271b 100644 --- a/app/init.php +++ b/app/init.php @@ -49,7 +49,7 @@ const APP_MODE_DEFAULT = 'default'; const APP_MODE_ADMIN = 'admin'; const APP_PAGING_LIMIT = 12; const APP_CACHE_BUSTER = 160; -const APP_VERSION_STABLE = '0.10.1'; +const APP_VERSION_STABLE = '0.10.2'; 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 d26250736..43d17deb2 100644 --- a/src/Appwrite/Migration/Migration.php +++ b/src/Appwrite/Migration/Migration.php @@ -45,6 +45,7 @@ abstract class Migration '0.9.4' => 'V08', '0.10.0' => 'V09', '0.10.1' => 'V09', + '0.10.2' => 'V09', ]; /** From 5e2ef7e213fdca7f01f8fb79199834aecfd152da Mon Sep 17 00:00:00 2001 From: Torsten Dittmann Date: Mon, 6 Sep 2021 16:00:21 +0200 Subject: [PATCH 2/2] Update CHANGES.md --- CHANGES.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index 3942452f2..f5056dbcb 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,8 +1,9 @@ # Version 0.10.2 ## Bugs -- Fixed SSL certificates status not being update (#1592) +- Fixed SSL certificates status not being updated (#1592) - Fixed failing team invites on console (#1580) + # Version 0.10.1 ## Bugs