Skip to content

Commit e7568d7

Browse files
committed
Merge pull request #751 from pantheon-systems/v0.10.0
Update to version 0.10.0
2 parents 8696201 + 7cf393f commit e7568d7

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#Change Log
22
All notable changes to this project starting with the 0.6.0 release will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org)
33

4-
##Master
4+
## [0.10.0] - 2015-12-15
55
### Added
66
- New command `workflows show` displays details about a workflow (#687)
77
- Added back session token-based login. (#693)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ composer require pantheon-systems/cli
3737

3838
Run this in this in your terminal client:
3939
```bash
40-
curl https://github.com/pantheon-systems/cli/releases/download/0.9.3/terminus.phar -L -o /usr/local/bin/terminus && chmod +x /usr/local/bin/terminus
40+
curl https://github.com/pantheon-systems/cli/releases/download/0.10.0/terminus.phar -L -o /usr/local/bin/terminus && chmod +x /usr/local/bin/terminus
4141
```
4242
####Installing with Git
4343
To install with Git and use Terminus HEAD, you should clone this repository and run Terminus directly. If you would like to contribute to the Terminus source, this is the way you should install it. You will require Composer for this installation.
@@ -126,7 +126,7 @@ And run your tests via:
126126
Please also run the internal documentation generator before committing your changes. This keeps the documentation always up-to-date:
127127
```bash
128128
cd $HOME/pantheon-cli
129-
php utils/make-docs.php
129+
php utils/make-docs.php
130130
```
131131

132132
3. Open a pull request on GitHub so that we may evaluate and merge your changes.

php/utils.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ function colorize($string) {
105105
*/
106106
function defineConstants() {
107107
define('Terminus', true);
108-
define('TERMINUS_VERSION', '0.9.3');
108+
define('TERMINUS_VERSION', '0.10.0');
109109

110110
if (!defined('TERMINUS_SCRIPT')) {
111111
define('TERMINUS_SCRIPT', 'php/Terminus.php');
@@ -197,7 +197,7 @@ function getVendorPaths() {
197197
function importEnvironmentVariables() {
198198
//Load environment variables from __DIR__/.env
199199
if (file_exists(getcwd() . '/.env')) {
200-
$env = new Dotenv\Dotenv(getcwd());
200+
$env = new \Dotenv\Dotenv(getcwd());
201201
$env->load();
202202
}
203203
}
@@ -452,4 +452,3 @@ function twigRender($template_name, $data, $options) {
452452
);
453453
return $rendered_template;
454454
}
455-

0 commit comments

Comments
 (0)