Release v0.25.0 by danielbachhuber · Pull Request #234 · wp-cli/wp-cli.github.com · GitHub
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
155 changes: 155 additions & 0 deletions _posts/2016-10-25-version-0.25.0.md
16 changes: 15 additions & 1 deletion commands/cli/alias/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ display_global_parameters: true
<hr />

Aliases are shorthand references to WordPress installs. For instance,
'@dev' could refer to a development install and '@prod' could refer to
`@dev` could refer to a development install and `@prod` could refer to
a production install. This command gives you visibility in what
registered aliases you have available.

Expand All @@ -28,5 +28,19 @@ options:
- json
\---

### EXAMPLES

# List all available aliases.
$ wp cli alias
---
@all: Run command against every registered alias.
@prod:
ssh: runcommand@runcommand.io~/webapps/production
@dev:
ssh: vagrant@192.168.50.10/srv/www/runcommand.dev
@both:
- @prod
- @dev



12 changes: 6 additions & 6 deletions commands/cli/check-update/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ display_global_parameters: true
### OPTIONS

[\--patch]
: Only list patch updates
: Only list patch updates.

[\--minor]
: Only list minor updates
: Only list minor updates.

[\--major]
: Only list major updates
: Only list major updates.

[\--field=&lt;field&gt;]
: Prints the value of a single field for each update.
Expand All @@ -43,16 +43,16 @@ options:

### EXAMPLES

# Check for update
# Check for update.
$ wp cli check-update
Success: WP-CLI is at the latest version.

# Check for update and new version is available
# Check for update and new version is available.
$ wp cli check-update
+---------+-------------+-------------------------------------------------------------------------------+
| version | update_type | package_url |
+---------+-------------+-------------------------------------------------------------------------------+
| 0.23.1 | patch | https://github.com/wp-cli/wp-cli/releases/download/v0.23.1/wp-cli-0.23.1.phar |
| 0.24.1 | patch | https://github.com/wp-cli/wp-cli/releases/download/v0.24.1/wp-cli-0.24.1.phar |
+---------+-------------+-------------------------------------------------------------------------------+


Expand Down
2 changes: 1 addition & 1 deletion commands/cli/cmd-dump/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ display_global_parameters: true

### EXAMPLES

# Dump the list of installed commands
# Dump the list of installed commands.
$ wp cli cmd-dump
{"name":"wp","description":"Manage WordPress through the command-line.","longdesc":"\n\n

16 changes: 8 additions & 8 deletions commands/cli/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,20 +14,20 @@ display_global_parameters: true

### EXAMPLES

# Display CLI version
# Display CLI version.
$ wp cli version
WP-CLI 0.23.1
WP-CLI 0.24.1

# Check for update
# Check for update.
$ wp cli check-update
Success: WP-CLI is at the latest version.

# Update CLI
# Update CLI.
$ wp cli update
You have version 0.23.0. Would you like to update to 0.23.1? [y/n] y
Downloading from https://github.com/wp-cli/wp-cli/releases/download/v0.23.1/wp-cli-0.23.1.phar...
You have version 0.24.0. Would you like to update to 0.24.1? [y/n] y
Downloading from https://github.com/wp-cli/wp-cli/releases/download/v0.24.1/wp-cli-0.24.1.phar...
New version works. Proceeding to replace.
Success: Updated WP-CLI to 0.23.1
Success: Updated WP-CLI to 0.24.1.



Expand Down Expand Up @@ -67,7 +67,7 @@ display_global_parameters: true
</tr>
<tr>
<td><a href="/commands/cli/update/">update</a></td>
<td>Fetch most recent update matching the requirements. Returns the available versions if there are updates, or empty if no update available.</td>
<td>Update WP-CLI.</td>
</tr>
<tr>
<td><a href="/commands/cli/version/">version</a></td>
Expand Down
3 changes: 2 additions & 1 deletion commands/cli/info/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ options:

### EXAMPLES

# Display various data about the CLI environment.
$ wp cli info
PHP binary: /usr/bin/php5
PHP version: 5.5.9-1ubuntu4.16
Expand All @@ -33,7 +34,7 @@ options:
WP-CLI packages dir: /home/person/.wp-cli/packages/
WP-CLI global config:
WP-CLI project config:
WP-CLI version: 0.23.1
WP-CLI version: 0.24.1



1 change: 1 addition & 0 deletions commands/cli/param-dump/index.md
Loading