From 0d90b8ed5cee42bc5be4989da37aef29d63caa74 Mon Sep 17 00:00:00 2001 From: Ben Sheldon Date: Tue, 11 Aug 2015 09:46:09 -0700 Subject: [PATCH 1/2] Prepare v0.6.1 --- README.md | 2 +- php/terminus.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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)) { From 7ac2d27bcb3b157c72745409062a1ad7dd6f4eae Mon Sep 17 00:00:00 2001 From: Ben Sheldon Date: Tue, 11 Aug 2015 10:10:32 -0700 Subject: [PATCH 2/2] Remove specific version from feature tests --- tests/features/cli.feature | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 """