Skip to content

Commit

Permalink
Merge pull request #543 from pantheon-systems/0.8.1
Browse files Browse the repository at this point in the history
Updating to version 0.8.1
  • Loading branch information
TeslaDethray committed Sep 28, 2015
2 parents f7d2496 + a91bd63 commit 299ca85
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#Change Log
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)

##MASTER
##[0.8.1] - 2015-09-28
### Changed
- Packagist now indexes this project as `[pantheon-systems/cli](https://packagist.org/packages/pantheon-systems/cli)` (was `terminus/terminus`)
- `site owner` now just returns the owner ID. The --set flag has been removed. Setting is now done by `site set-owner`. (#469)
Expand All @@ -24,6 +24,8 @@ All notable changes to this project starting with the 0.6.0 release will be docu
- `site organizations add|remove` no longer crashes when given an invalid organization. (#515)
- Filename for aliases as shown in `sites aliases` help text (#522)
- Element selection on `sites backups` (#532)
- Fixed regression on backups (#525)
- Fixed PHP 5.3.x compatibility (#541)

##[0.8.0] - 2015-09-15
###Added
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.8.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.8.1/terminus.phar -L -o /usr/local/bin/terminus && chmod +x /usr/local/bin/terminus
```

To get started with Terminus, you must first authenticate:
Expand Down
2 changes: 1 addition & 1 deletion php/terminus.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

//Can be used by plugins/themes to check if Terminus is running or not
define('Terminus', true);
define('TERMINUS_VERSION', '0.8.0');
define('TERMINUS_VERSION', '0.8.1');

$source = 'unknown';
if ((PHP_SAPI == 'cli') && isset($argv)) {
Expand Down
2 changes: 1 addition & 1 deletion utils/contrib-list
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env bash

if [ $# -lt 1 ]; then
echo "usage: $(basename $0) v0.8.0..master [-l]"
echo "usage: $(basename $0) v0.8.1..master [-l]"
exit 1
fi

Expand Down

0 comments on commit 299ca85

Please sign in to comment.