diff --git a/README.md b/README.md index 98524f0..89f658c 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ WP-CLI `packages/local/` directory. [--require_wp_cli=] Required WP-CLI version for the package. --- - default: ^2.12 + default: ^2.13 --- [--require_wp_cli_tests=] diff --git a/features/scaffold-package-readme.feature b/features/scaffold-package-readme.feature index 635484c..513f28f 100644 --- a/features/scaffold-package-readme.feature +++ b/features/scaffold-package-readme.feature @@ -40,7 +40,7 @@ Feature: Scaffold a README.md file for an existing package And the {PACKAGE_PATH}/local/wp-cli/default-readme/README.md file should exist And the {PACKAGE_PATH}/local/wp-cli/default-readme/README.md file should contain: """ - Installing this package requires WP-CLI v2.12 or greater. Update to the latest stable release with `wp cli update`. + Installing this package requires WP-CLI v2.13 or greater. Update to the latest stable release with `wp cli update`. """ And the {PACKAGE_PATH}/local/wp-cli/default-readme/README.md file should contain: """ @@ -76,7 +76,7 @@ Feature: Scaffold a README.md file for an existing package And the {PACKAGE_PATH}/local/wp-cli/custom-branch/README.md file should exist And the {PACKAGE_PATH}/local/wp-cli/custom-branch/README.md file should contain: """ - Installing this package requires WP-CLI v2.12 or greater. Update to the latest stable release with `wp cli update`. + Installing this package requires WP-CLI v2.13 or greater. Update to the latest stable release with `wp cli update`. """ And the {PACKAGE_PATH}/local/wp-cli/custom-branch/README.md file should contain: """ @@ -152,7 +152,7 @@ Feature: Scaffold a README.md file for an existing package "files": [ "command.php" ] }, "require": { - "wp-cli/wp-cli": "^2.12" + "wp-cli/wp-cli": "^2.13" }, "require-dev": { "wp-cli/wp-cli-tests": "^5.0.0" @@ -367,7 +367,7 @@ Feature: Scaffold a README.md file for an existing package "files": [ "command.php" ] }, "require": { - "wp-cli/wp-cli": "^2.12" + "wp-cli/wp-cli": "^2.13" }, "require-dev": { "wp-cli/wp-cli-tests": "^5.0.0" diff --git a/features/scaffold-package.feature b/features/scaffold-package.feature index 8e6585b..aa6ba9e 100644 --- a/features/scaffold-package.feature +++ b/features/scaffold-package.feature @@ -43,7 +43,7 @@ Feature: Scaffold WP-CLI commands And the {PACKAGE_PATH}/local/wp-cli/foo/composer.json file should contain: """ "require": { - "wp-cli/wp-cli": "^2.12" + "wp-cli/wp-cli": "^2.13" }, """ And the {PACKAGE_PATH}/local/wp-cli/foo/hello-world-command.php file should exist diff --git a/src/ScaffoldPackageCommand.php b/src/ScaffoldPackageCommand.php index fb05659..5e18743 100644 --- a/src/ScaffoldPackageCommand.php +++ b/src/ScaffoldPackageCommand.php @@ -47,7 +47,7 @@ class ScaffoldPackageCommand { * [--require_wp_cli=] * : Required WP-CLI version for the package. * --- - * default: ^2.12 + * default: ^2.13 * --- * * [--require_wp_cli_tests=]