Skip to content

Commit

Permalink
fix versions
Browse files Browse the repository at this point in the history
  • Loading branch information
lohanidamodar committed Jan 4, 2022
1 parent 63ac1a8 commit 32d8576
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/client.php
Original file line number Diff line number Diff line change
Expand Up @@ -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');
});

Expand Down
2 changes: 1 addition & 1 deletion install.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion src/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -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' ];

/**
Expand Down

0 comments on commit 32d8576

Please sign in to comment.