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) 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 305518e36d..15081f4489 100644 --- a/app/init.php +++ b/app/init.php @@ -36,8 +36,8 @@ const APP_EMAIL_SECURITY = 'security@localhost.test'; // Default security email 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 = 131; -const APP_VERSION_STABLE = '0.6.2'; +const APP_CACHE_BUSTER = 132; +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';