Skip to content

Commit 4da876e

Browse files
authored
Fix failing tests due to Mustache dependency conflict (#280)
1 parent 604a38f commit 4da876e

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ WP-CLI `packages/local/` directory.
5353
[--require_wp_cli=<version>]
5454
Required WP-CLI version for the package.
5555
---
56-
default: ^2.12
56+
default: ^2.13
5757
---
5858

5959
[--require_wp_cli_tests=<version>]

features/scaffold-package-readme.feature

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Feature: Scaffold a README.md file for an existing package
4040
And the {PACKAGE_PATH}/local/wp-cli/default-readme/README.md file should exist
4141
And the {PACKAGE_PATH}/local/wp-cli/default-readme/README.md file should contain:
4242
"""
43-
Installing this package requires WP-CLI v2.12 or greater. Update to the latest stable release with `wp cli update`.
43+
Installing this package requires WP-CLI v2.13 or greater. Update to the latest stable release with `wp cli update`.
4444
"""
4545
And the {PACKAGE_PATH}/local/wp-cli/default-readme/README.md file should contain:
4646
"""
@@ -76,7 +76,7 @@ Feature: Scaffold a README.md file for an existing package
7676
And the {PACKAGE_PATH}/local/wp-cli/custom-branch/README.md file should exist
7777
And the {PACKAGE_PATH}/local/wp-cli/custom-branch/README.md file should contain:
7878
"""
79-
Installing this package requires WP-CLI v2.12 or greater. Update to the latest stable release with `wp cli update`.
79+
Installing this package requires WP-CLI v2.13 or greater. Update to the latest stable release with `wp cli update`.
8080
"""
8181
And the {PACKAGE_PATH}/local/wp-cli/custom-branch/README.md file should contain:
8282
"""
@@ -152,7 +152,7 @@ Feature: Scaffold a README.md file for an existing package
152152
"files": [ "command.php" ]
153153
},
154154
"require": {
155-
"wp-cli/wp-cli": "^2.12"
155+
"wp-cli/wp-cli": "^2.13"
156156
},
157157
"require-dev": {
158158
"wp-cli/wp-cli-tests": "^5.0.0"
@@ -367,7 +367,7 @@ Feature: Scaffold a README.md file for an existing package
367367
"files": [ "command.php" ]
368368
},
369369
"require": {
370-
"wp-cli/wp-cli": "^2.12"
370+
"wp-cli/wp-cli": "^2.13"
371371
},
372372
"require-dev": {
373373
"wp-cli/wp-cli-tests": "^5.0.0"

features/scaffold-package.feature

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Feature: Scaffold WP-CLI commands
4343
And the {PACKAGE_PATH}/local/wp-cli/foo/composer.json file should contain:
4444
"""
4545
"require": {
46-
"wp-cli/wp-cli": "^2.12"
46+
"wp-cli/wp-cli": "^2.13"
4747
},
4848
"""
4949
And the {PACKAGE_PATH}/local/wp-cli/foo/hello-world-command.php file should exist

src/ScaffoldPackageCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ class ScaffoldPackageCommand {
4747
* [--require_wp_cli=<version>]
4848
* : Required WP-CLI version for the package.
4949
* ---
50-
* default: ^2.12
50+
* default: ^2.13
5151
* ---
5252
*
5353
* [--require_wp_cli_tests=<version>]

0 commit comments

Comments
 (0)