From 6f504660e5b7594c43e1253fdc238545d6b25ad7 Mon Sep 17 00:00:00 2001 From: Eldad Fux Date: Tue, 21 Jul 2020 14:57:39 +0300 Subject: [PATCH 1/2] Updated changelog --- CHANGES.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGES.md b/CHANGES.md index 22026bf2a7..e27b89b088 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -21,6 +21,7 @@ - Added support for boolean 'true' and 'false' in query strings alongside 1 and 0 - Added pagination for projects list on the console home page. - Updated storage calculation to match IEC standards +- Now using Alpine as base Docker image - New and consistent response format for all API object + new response examples in the docs - Removed user roles attribute from user object (can be fetched from /v1/teams/memberships) ** - Removed type attribute from session object response (used only internally) From 4c8667048643579e0f782833da91e492a59bc26b Mon Sep 17 00:00:00 2001 From: Eldad Fux Date: Tue, 21 Jul 2020 14:58:41 +0300 Subject: [PATCH 2/2] Updated version number --- README.md | 6 +++--- app/init.php | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index d0900ade4f..2a498451f2 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ The easiest way to start running your Appwrite server is by running our docker-c docker run -it --rm \ --volume /var/run/docker.sock:/var/run/docker.sock \ --volume "$(pwd)"/appwrite:/install/appwrite:rw \ - -e version=0.6.2 \ + -e version=0.7.0 \ appwrite/install ``` @@ -63,7 +63,7 @@ docker run -it --rm \ docker run -it --rm ^ --volume //var/run/docker.sock:/var/run/docker.sock ^ --volume "%cd%"/appwrite:/install/appwrite:rw ^ - -e version=0.6.2 ^ + -e version=0.7.0 ^ appwrite/install ``` @@ -73,7 +73,7 @@ docker run -it --rm ^ docker run -it --rm , --volume /var/run/docker.sock:/var/run/docker.sock , --volume ${pwd}/appwrite:/install/appwrite:rw , - -e version=0.6.2 , + -e version=0.7.0 , appwrite/install ``` diff --git a/app/init.php b/app/init.php index b9918574bc..f29608f5d0 100644 --- a/app/init.php +++ b/app/init.php @@ -37,7 +37,7 @@ const APP_USERAGENT = APP_NAME.'-Server v%s. Please report abuse at %s'; const APP_MODE_ADMIN = 'admin'; const APP_PAGING_LIMIT = 12; const APP_CACHE_BUSTER = 127; -const APP_VERSION_STABLE = '0.6.2'; +const APP_VERSION_STABLE = '0.7.0'; const APP_STORAGE_UPLOADS = '/storage/uploads'; const APP_STORAGE_FUNCTIONS = '/storage/functions'; const APP_STORAGE_CACHE = '/storage/cache';