You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: _posts/2016-11-29-version-1.0.0.md
+8-2Lines changed: 8 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,11 +6,15 @@ title: Version 1.0.0 released
6
6
7
7
Woohoo!
8
8
9
+
Over the course of 5+ years, hundreds of contributors have worked to bring you WP-CLI v1.0.0, which I'm proud to announce today.
9
10
11
+
This release represents a level of maturity few open source projects achieve. It also marks a transition point, where the WP-CLI project shifts focus to enabling innovation through the WP-CLI package ecosystem. Building new features as standalone packages promotes faster iteration, more creativity, and distributes the maintenance burden more sustainably. As these community packages find success, we'll bring their learnings back into WP-CLI, alongside bug fixes and minor enhancements.
12
+
13
+
Now that the issue backlog is [down to zero](https://twitter.com/danielbachhuber/status/802951083354009600), I'm personally looking forward to getting more ideas cooking for [runcommand](https://runcommand.io/), my own WP-CLI innovation studio.
10
14
11
15
### Introducing `WP_CLI::runcommand()`
12
16
13
-
`WP_CLI::runcommand()` ([doc](/docs/internal-api/wp-cli-runcommand/)) is the new best way to run WP-CLI commands from within your WP-CLI command. It's as though `WP_CLI::run_command()` and `WP_CLI::launch_self()` grew up, married, and had a perfect child.
17
+
`WP_CLI::runcommand()` ([doc](/docs/internal-api/wp-cli-runcommand/)) is the new best way to run WP-CLI commands from within your WP-CLI command. It's as though `WP_CLI::run_command()` and `WP_CLI::launch_self()` grew up, married, and had the perfect child.
14
18
15
19
With `WP_CLI::runcommand()`, you can:
16
20
@@ -19,9 +23,11 @@ With `WP_CLI::runcommand()`, you can:
19
23
* Return STDOUT generated by the command, or all command execution details (STDOUT, STDERR, return_code) as an object.
Some commands support performing the same operation against multiple resources (e.g. updating two or more plugins wit`wp plugin update akismet hello`). Previously, if one of the operations failed (e.g. a plugin update failed to be downloaded), WP-CLI would display a warning, continue on, and exit with return code 0. Beginning in v1.0.0, WP-CLI uses return code 1 when one or more operations fails.
30
+
Some commands support performing the same operation against multiple resources (e.g. updating two or more plugins with`wp plugin update akismet hello`). Previously, if one of the operations failed (e.g. a plugin update failed to be downloaded), WP-CLI would display a warning, continue on, and exit with return code 0. Beginning in v1.0.0, WP-CLI uses return code 1 when one or more operations fails.
0 commit comments