Skip to content

Commit adacb4c

Browse files
authored
Merge pull request #455 from wp-cli/release-2-7-0
Release v2.7.0
2 parents 53e86db + 3dfd2e2 commit adacb4c

File tree

3 files changed

+24
-26
lines changed

3 files changed

+24
-26
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ Ongoing maintenance is made possible by:
1212
<a href="https://wpengine.com/" style="height:100px;width:30%;display:inline-block;position:relative;margin:20px;"><img class="aligncenter size-full wp-image-333" style="max-height:100%;max-width:100%;position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;" src="https://make.wordpress.org/cli/files/2017/04/wpengine.png" alt="" width="320" height="60" /></a>
1313
<a href="https://www.cloudways.com/" style="height:100px;width:30%;display:inline-block;position:relative;margin:20px;"><img class="aligncenter size-full wp-image-3229" style="max-height:100%;max-width:100%;position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;" src="https://make.wordpress.org/cli/files/2021/02/Cloudways-Logo-e1612285267691.png" alt="" width="320" height="62" /></a>
1414

15-
The current stable release is [version 2.5.0](https://make.wordpress.org/cli/2021/05/19/wp-cli-v2-5-0-release-notes/). For announcements, follow [@wpcli on Twitter](https://twitter.com/wpcli) or [sign up for email updates](https://make.wordpress.org/cli/subscribe/). [Check out the roadmap](https://make.wordpress.org/cli/handbook/roadmap/) for an overview of what's planned for upcoming releases.
15+
The current stable release is [version 2.7.0](https://make.wordpress.org/cli/2022/10/11/wp-cli-v2-7-0-release-notes/). For announcements, follow [@wpcli on Twitter](https://twitter.com/wpcli) or [sign up for email updates](https://make.wordpress.org/cli/subscribe/). [Check out the roadmap](https://make.wordpress.org/cli/handbook/roadmap/) for an overview of what's planned for upcoming releases.
1616

17-
[![Build Status](https://travis-ci.org/wp-cli/wp-cli.svg?branch=master)](https://travis-ci.org/wp-cli/wp-cli) [![Average time to resolve an issue](https://isitmaintained.com/badge/resolution/wp-cli/wp-cli.svg)](https://isitmaintained.com/project/wp-cli/wp-cli "Average time to resolve an issue") [![Percentage of issues still open](https://isitmaintained.com/badge/open/wp-cli/wp-cli.svg)](https://isitmaintained.com/project/wp-cli/wp-cli "Percentage of issues still open")
17+
[![Testing](https://github.com/wp-cli/wp-cli/actions/workflows/testing.yml/badge.svg)](https://github.com/wp-cli/wp-cli/actions/workflows/testing.yml) [![Average time to resolve an issue](https://isitmaintained.com/badge/resolution/wp-cli/wp-cli.svg)](https://isitmaintained.com/project/wp-cli/wp-cli "Average time to resolve an issue") [![Percentage of issues still open](https://isitmaintained.com/badge/open/wp-cli/wp-cli.svg)](https://isitmaintained.com/project/wp-cli/wp-cli "Percentage of issues still open")
1818

1919
Quick links: [Using](#using) &#124; [Installing](#installing) &#124; [Support](#support) &#124; [Extending](#extending) &#124; [Contributing](#contributing) &#124; [Credits](#credits)
2020

@@ -52,7 +52,7 @@ Downloading the Phar file is our recommended installation method for most users.
5252
Before installing WP-CLI, please make sure your environment meets the minimum requirements:
5353

5454
- UNIX-like environment (OS X, Linux, FreeBSD, Cygwin); limited support in Windows environment
55-
- PHP 5.4 or later
55+
- PHP 5.6 or later
5656
- WordPress 3.7 or later. Versions older than the latest WordPress release may have degraded functionality
5757

5858
Once you've verified requirements, download the [wp-cli.phar](https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar) file using `wget` or `curl`:
@@ -78,21 +78,21 @@ If WP-CLI was installed successfully, you should see something like this when yo
7878

7979
```bash
8080
$ wp --info
81-
OS: Linux 4.19.128-microsoft-standard #1 SMP Tue Jun 23 12:58:10 UTC 2020 x86_64
81+
OS: Linux 5.10.60.1-microsoft-standard-WSL2 #1 SMP Wed Aug 25 23:20:18 UTC 2021 x86_64
8282
Shell: /usr/bin/zsh
83-
PHP binary: /usr/bin/php
84-
PHP version: 8.0.5
85-
php.ini used: /etc/php/8.0/cli/php.ini
83+
PHP binary: /usr/bin/php8.1
84+
PHP version: 8.1.0
85+
php.ini used: /etc/php/8.1/cli/php.ini
8686
MySQL binary: /usr/bin/mysql
87-
MySQL version: mysql Ver 8.0.23-0ubuntu0.20.04.1 for Linux on x86_64 ((Ubuntu))
87+
MySQL version: mysql Ver 8.0.27-0ubuntu0.20.04.1 for Linux on x86_64 ((Ubuntu))
8888
SQL modes:
8989
WP-CLI root dir: /home/wp-cli/
9090
WP-CLI vendor dir: /home/wp-cli/vendor
9191
WP_CLI phar path:
9292
WP-CLI packages dir: /home/wp-cli/.wp-cli/packages/
9393
WP-CLI global config:
9494
WP-CLI project config: /home/wp-cli/wp-cli.yml
95-
WP-CLI version: 2.5.0
95+
WP-CLI version: 2.7.0
9696
```
9797

9898
### Updating
@@ -105,7 +105,7 @@ Want to live life on the edge? Run `wp cli update --nightly` to use the latest n
105105

106106
### Tab completions
107107

108-
WP-CLI also comes with a tab completion script for Bash and ZSH. Just download [wp-completion.bash](https://raw.githubusercontent.com/wp-cli/wp-cli/v2.5.0/utils/wp-completion.bash) and source it from `~/.bash_profile`:
108+
WP-CLI also comes with a tab completion script for Bash and ZSH. Just download [wp-completion.bash](https://raw.githubusercontent.com/wp-cli/wp-cli/v2.6.0/utils/wp-completion.bash) and source it from `~/.bash_profile`:
109109

110110
```bash
111111
source /FULL/PATH/TO/wp-completion.bash

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"wp-cli/shell-command": "^2",
3636
"wp-cli/super-admin-command": "^2",
3737
"wp-cli/widget-command": "^2",
38-
"wp-cli/wp-cli": "dev-master"
38+
"wp-cli/wp-cli": "^2.7.0"
3939
},
4040
"require-dev": {
4141
"roave/security-advisories": "dev-latest",

composer.lock

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

0 commit comments

Comments
 (0)