diff --git a/app/client.php b/app/client.php index 7e4375b..959101c 100644 --- a/app/client.php +++ b/app/client.php @@ -109,7 +109,7 @@ $cli ->task('version') ->action(function() { - Console::log('CLI Version : 0.12.1'); + Console::log('CLI Version : 0.13.0'); Console::log('Server Version : 0.12.0'); }); diff --git a/install.ps1 b/install.ps1 index 6fd9fc5..31fa773 100644 --- a/install.ps1 +++ b/install.ps1 @@ -25,7 +25,7 @@ $APPWRITE_EXECUTABLE_FILEPATH = Join-Path -Path $APPWRITE_INSTALL_DIR -ChildPath $APPWRITE_CLI_IMAGE_NAME = "appwrite/cli" # Appwrite CLI image version -$APPWRITE_CLI_IMAGE_VERSION = "0.12.1" +$APPWRITE_CLI_IMAGE_VERSION = "0.13.0" $APPWRITE_EXECUTABLE_CONTENT = @" `$allowList = 'version', 'help', 'init', 'client' , 'account', 'avatars', 'database', 'functions', 'health', 'locale', 'storage', 'teams', 'users' diff --git a/install.sh b/install.sh index f7205a6..a73adc5 100644 --- a/install.sh +++ b/install.sh @@ -30,7 +30,7 @@ APPWRITE_TEMP_NAME=temp-$(date +%s) APPWRITE_CLI_IMAGE_NAME=appwrite/cli # Appwrite CLI image version -APPWRITE_CLI_IMAGE_VERSION=0.12.1 +APPWRITE_CLI_IMAGE_VERSION=0.13.0 # sudo is required to copy executable to APPWRITE_INSTALL_DIR for linux USE_SUDO="false" diff --git a/src/Client.php b/src/Client.php index 4909676..cd31104 100644 --- a/src/Client.php +++ b/src/Client.php @@ -29,7 +29,7 @@ class Client */ protected $headers = [ 'content-type' => '', - 'x-sdk-version' => 'appwrite:cli:0.12.1', + 'x-sdk-version' => 'appwrite:cli:0.13.0', 'X-Appwrite-Response-Format' => '0.12.0' ]; /**