From 93df29bf119578461316b6c08bac648e2b1e16ce Mon Sep 17 00:00:00 2001 From: Eldad Fux Date: Sat, 21 Mar 2020 14:51:04 +0200 Subject: [PATCH] Updated readme --- CHANGES.md | 6 ++++++ README.md | 2 +- app/init.php | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 52120477c..277f3d397 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,9 @@ +# Version 0.5.2 (PRE-RELEASE) + +## Bug Fixes + +* Fixed missing attributes in user account + # Version 0.5.1 (PRE-RELEASE) ## Bug Fixes diff --git a/README.md b/README.md index 2fd0102a1..34310ced8 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,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.5.1 \ + -e version=0.5.2 \ appwrite/install ``` diff --git a/app/init.php b/app/init.php index 020e3b56f..a8b574323 100644 --- a/app/init.php +++ b/app/init.php @@ -26,7 +26,7 @@ const APP_USERAGENT = APP_NAME.'-Server v%s. Please report abuse at %s'; const APP_MODE_ADMIN = 'admin'; const APP_PAGING_LIMIT = 15; const APP_CACHE_BUSTER = 55; -const APP_VERSION_STABLE = '0.5.1'; +const APP_VERSION_STABLE = '0.5.2'; const APP_STORAGE_UPLOADS = '/storage/uploads'; const APP_STORAGE_CACHE = '/storage/cache'; const APP_STORAGE_CERTIFICATES = '/storage/certificates';