diff --git a/CHANGES.md b/CHANGES.md index f925a4132..771e9ff3d 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,9 @@ +# Version 0.12.1 + +## Bugs +- Fixed some issues with the Migration +- Fixed the UI to add Variables to Functions + # Version 0.12.0 ## Features diff --git a/README.md b/README.md index df3cd5f28..1e40d5286 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,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.12.0 + appwrite/appwrite:0.12.1 ``` ### Windows @@ -70,7 +70,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.12.0 + appwrite/appwrite:0.12.1 ``` #### PowerShell @@ -80,7 +80,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.12.0 + appwrite/appwrite:0.12.1 ``` 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 c8171fa04..36bee110f 100644 --- a/app/init.php +++ b/app/init.php @@ -62,7 +62,7 @@ const APP_PAGING_LIMIT = 12; const APP_LIMIT_COUNT = 5000; const APP_LIMIT_USERS = 10000; const APP_CACHE_BUSTER = 200; -const APP_VERSION_STABLE = '0.12.0'; +const APP_VERSION_STABLE = '0.12.1'; const APP_DATABASE_ATTRIBUTE_EMAIL = 'email'; const APP_DATABASE_ATTRIBUTE_ENUM = 'enum'; const APP_DATABASE_ATTRIBUTE_IP = 'ip'; diff --git a/src/Appwrite/Migration/Migration.php b/src/Appwrite/Migration/Migration.php index 08effc05d..777d38927 100644 --- a/src/Appwrite/Migration/Migration.php +++ b/src/Appwrite/Migration/Migration.php @@ -66,6 +66,7 @@ abstract class Migration '0.10.4' => 'V09', '0.11.0' => 'V10', '0.12.0' => 'V11', + '0.12.1' => 'V11', ]; /**