diff --git a/README.md b/README.md index 4df763115..e406872c6 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ For more advanced installation instructions, please see [the installation page o Installing Terminus is simple. Ensure that your system has and can run the required software above and run this in your favorite terminal client: ```bash -curl https://github.com/pantheon-systems/cli/releases/download/0.6.0/terminus.phar -L -o /usr/local/bin/terminus && chmod +x /usr/local/bin/terminus +curl https://github.com/pantheon-systems/cli/releases/download/0.6.1/terminus.phar -L -o /usr/local/bin/terminus && chmod +x /usr/local/bin/terminus ``` To get started with Terminus, you must first authenticate: diff --git a/php/terminus.php b/php/terminus.php index c65ee048d..71b8178bd 100755 --- a/php/terminus.php +++ b/php/terminus.php @@ -2,7 +2,7 @@ //Can be used by plugins/themes to check if Terminus is running or not define('Terminus', true); -define('TERMINUS_VERSION', '1.0.0'); +define('TERMINUS_VERSION', '0.6.1'); $source = 'unknown'; if((PHP_SAPI == 'cli') && isset($argv)) { diff --git a/tests/features/cli.feature b/tests/features/cli.feature index bbd152c38..3bcb8068f 100644 --- a/tests/features/cli.feature +++ b/tests/features/cli.feature @@ -1,5 +1,5 @@ Feature: cli - + #Scenario: Clearing Cache #@vcr cli-clear-cache #When I run "touch ~/.terminus/cache/testfile" @@ -26,7 +26,7 @@ Feature: cli When I run "terminus cli info" Then I should get: """ - 1.0.0 + Terminus version """ Scenario: Dumping Parameters @@ -70,5 +70,5 @@ Feature: cli When I run "terminus cli version" Then I should get: """ - 1.0.0 + Terminus version """