Skip to content

Commit 8dde1f0

Browse files
authored
Merge pull request #1205 from pantheon-systems/update/0.13.0
Updating to version 0.13.0
2 parents f5a515d + 256c11e commit 8dde1f0

22 files changed

+139
-81
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.13.0] - 2016-09-15
55
### Added
66
- New rocket art available using `art rocket`. (#1148)
77

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ composer require pantheon-systems/terminus
3737

3838
Run this in this in your terminal client:
3939
```bash
40-
curl https://github.com/pantheon-systems/terminus/releases/download/0.12.0/terminus.phar -L -o /usr/local/bin/terminus && chmod +x /usr/local/bin/terminus
40+
curl https://github.com/pantheon-systems/terminus/releases/download/0.13.0/terminus.phar -L -o /usr/local/bin/terminus && chmod +x /usr/local/bin/terminus
4141
```
4242

4343
####Installing with [Homebrew](http://brew.sh/)(for Macs)

composer.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

config/constants.yml

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

99
# App
10-
TERMINUS_VERSION: '0.12.0'
10+
TERMINUS_VERSION: '0.13.0'
1111

1212
# Connectivity
1313
TERMINUS_HOST: 'terminus.pantheon.io'

docs/Helpers/InputHelper.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -223,6 +223,8 @@
223223

224224
##### Parameters:
225225
[array] $arg_options Elements as follow:
226+
-array args Parameters from the command line
227+
-string key Key to look for in args
226228
-string message Message to give at prompt
227229
-mixed default Returned if user does not select a valid option
228230

@@ -242,6 +244,8 @@
242244

243245
##### Parameters:
244246
[array] $arg_options Elements as follow:
247+
-array args Parameters from the command line
248+
-string key Key to look for in args
245249
-string message Message to give at prompt
246250
-mixed default Returned if user does not select a valid option
247251

docs/Models/Auth.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,7 @@
66

77
##### Parameters:
88
[object] $attributes Attributes of this model
9-
[array] $options Options to set as $this->key
10-
11-
##### Return:
12-
[Auth]
9+
[array] $options Options with which to configure this model
1310

1411
---
1512

docs/Models/Backup.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Terminus\Models\Backup
22

3+
### __construct
4+
##### Description:
5+
Object constructor
6+
7+
##### Parameters:
8+
[object] $attributes Attributes of this model
9+
[array] $options Options with which to configure this model
10+
11+
---
12+
313
### backupIsFinished
414
##### Description:
515
Determines whether the backup has been completed or not

docs/Models/Environment.md

Lines changed: 21 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
##### Parameters:
88
[object] $attributes Attributes of this model
9-
[array] $options Options to set as $this->key
9+
[array] $options Options with which to configure this model
1010

1111
---
1212

@@ -36,7 +36,7 @@
3636
Clones database from this environment to another
3737

3838
##### Parameters:
39-
[string] $to_env Environment to clone into
39+
[string] $from_env Name of the environment to clone
4040

4141
##### Return:
4242
[Workflow]
@@ -48,7 +48,7 @@
4848
Clones files from this environment to another
4949

5050
##### Parameters:
51-
[string] $to_env Environment to clone into
51+
[string] $from_env Name of the environment to clone
5252

5353
##### Return:
5454
[Workflow]
@@ -186,6 +186,18 @@
186186

187187
---
188188

189+
### import
190+
##### Description:
191+
Imports a site archive onto Pantheon
192+
193+
##### Parameters:
194+
[string] $url URL of the archive to import
195+
196+
##### Return:
197+
[Workflow]
198+
199+
---
200+
189201
### importFiles
190202
##### Description:
191203
Imports a file archive
@@ -247,7 +259,9 @@
247259
Enable HTTP Basic Access authentication on the web environment
248260

249261
##### Parameters:
250-
[array] $options Parameters to override defaults
262+
[array] $params Elements as follow:
263+
-string username
264+
-string password
251265

252266
##### Return:
253267
[Workflow]
@@ -280,10 +294,12 @@
280294

281295
### mergeToDev
282296
##### Description:
283-
Merge code from this Multidev Environment into the Dev Environment
297+
Merge code from a multidev environment into the dev environment
284298

285299
##### Parameters:
286300
[array] $options Parameters to override defaults
301+
-string from_environment Name of the multidev environment to merge
302+
-boolean updatedb True to update DB with merge
287303

288304
##### Return:
289305
[Workflow]

docs/Models/Hostname.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Terminus\Models\Hostname
22

3+
### __construct
4+
##### Description:
5+
Object constructor
6+
7+
##### Parameters:
8+
[object] $attributes Attributes of this model
9+
[array] $options Options with which to configure this model
10+
11+
---
12+
313
### delete
414
##### Description:
515
Delete a hostname from an environment
@@ -9,3 +19,12 @@
919

1020
---
1121

22+
### serialize
23+
##### Description:
24+
Formats Hostname object into an associative array for output
25+
26+
##### Return:
27+
[array] $data associative array of data for output
28+
29+
---
30+

docs/Models/MachineToken.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Terminus\Models\MachineToken
22

3+
### __construct
4+
##### Description:
5+
Object constructor
6+
7+
##### Parameters:
8+
[object] $attributes Attributes of this model
9+
[array] $options Options with which to configure this model
10+
11+
---
12+
313
### delete
414
##### Description:
515
Deletes machine token

0 commit comments

Comments
 (0)