From dcc731a52d45fa2fdd32dd78118c396833178677 Mon Sep 17 00:00:00 2001 From: Torsten Dittmann Date: Thu, 9 Sep 2021 13:21:29 +0200 Subject: [PATCH 1/3] feat(release): 0.10.3 --- CHANGES.md | 4 ++++ README.md | 6 +++--- app/init.php | 2 +- src/Appwrite/Migration/Migration.php | 1 + 4 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index f5056dbcb..e1b218113 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,7 @@ +# Version 0.10.3 +- Fixed memory leak in realtime service (#1606) +- Fixed function execution now being UTF-8 encoded before saving (#1607) + # Version 0.10.2 ## Bugs diff --git a/README.md b/README.md index 6c8f6af54..9fb228412 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.2 + appwrite/appwrite:0.10.3 ``` ### 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.2 + appwrite/appwrite:0.10.3 ``` #### 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.2 + appwrite/appwrite:0.10.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 c9367271b..1e38e734a 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.2'; +const APP_VERSION_STABLE = '0.10.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 43d17deb2..b7aac0392 100644 --- a/src/Appwrite/Migration/Migration.php +++ b/src/Appwrite/Migration/Migration.php @@ -46,6 +46,7 @@ abstract class Migration '0.10.0' => 'V09', '0.10.1' => 'V09', '0.10.2' => 'V09', + '0.10.3' => 'V09', ]; /** From 3753bef3f53124da891e6b8f37b34e882fdf260a Mon Sep 17 00:00:00 2001 From: Torsten Dittmann Date: Thu, 9 Sep 2021 13:41:48 +0200 Subject: [PATCH 2/3] fix changelog typo --- CHANGES.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index e1b218113..846544de2 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,6 +1,6 @@ # Version 0.10.3 - Fixed memory leak in realtime service (#1606) -- Fixed function execution now being UTF-8 encoded before saving (#1607) +- Fixed function execution now being UTF-8 encoded before saved (#1607) # Version 0.10.2 From c03e939f735d00a06b7c98d51edf7a9890a18b33 Mon Sep 17 00:00:00 2001 From: Torsten Dittmann Date: Thu, 9 Sep 2021 13:42:20 +0200 Subject: [PATCH 3/3] fix changelog typo --- CHANGES.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index 846544de2..268aa3049 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,6 +1,6 @@ # Version 0.10.3 - Fixed memory leak in realtime service (#1606) -- Fixed function execution now being UTF-8 encoded before saved (#1607) +- Fixed function execution output now being UTF-8 encoded before saved (#1607) # Version 0.10.2