Skip to content

Commit 299ca85

Browse files
committed
Merge pull request #543 from pantheon-systems/0.8.1
Updating to version 0.8.1
2 parents f7d2496 + a91bd63 commit 299ca85

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

CHANGELOG.md

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

2830
##[0.8.0] - 2015-09-15
2931
###Added

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ For more advanced installation instructions, please see [the installation page o
2121

2222
Installing Terminus is simple. Ensure that your system has and can run the required software above and run this in your favorite terminal client:
2323
```bash
24-
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
24+
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
2525
```
2626

2727
To get started with Terminus, you must first authenticate:

php/terminus.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

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

77
$source = 'unknown';
88
if ((PHP_SAPI == 'cli') && isset($argv)) {

utils/contrib-list

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env bash
22

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

0 commit comments

Comments
 (0)