From d3ab56bb02e9ed97755680c4fbab902f8bc3fd87 Mon Sep 17 00:00:00 2001 From: Renato Alves <19148962+renatonascalves@users.noreply.github.com> Date: Tue, 14 Jan 2025 07:28:51 -0300 Subject: [PATCH 1/4] WIP: issue-9 From be9964493e5657488804a71367ccb0d5e9d32a03 Mon Sep 17 00:00:00 2001 From: Renato Alves <19148962+renatonascalves@users.noreply.github.com> Date: Tue, 14 Jan 2025 07:36:31 -0300 Subject: [PATCH 2/4] Upgrade WP Type Extensions package to ^3.0, plus misc changes --- .github/workflows/all-pr-tests.yml | 2 +- CHANGELOG.md | 8 ++++++++ composer.json | 5 ++--- 3 files changed, 11 insertions(+), 4 deletions(-) diff --git a/.github/workflows/all-pr-tests.yml b/.github/workflows/all-pr-tests.yml index eba45dd..c3f3c5d 100644 --- a/.github/workflows/all-pr-tests.yml +++ b/.github/workflows/all-pr-tests.yml @@ -17,7 +17,7 @@ jobs: # Define a matrix of PHP/WordPress versions to test against strategy: matrix: - php: [8.2, 8.3] + php: [8.2, 8.3, 8.4] wordpress: ["latest"] multisite: [false] runs-on: ubuntu-latest diff --git a/CHANGELOG.md b/CHANGELOG.md index c6bb012..259732f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,14 @@ This library adheres to [Semantic Versioning](https://semver.org/) and [Keep a C Nothing yet. +## 2.0.2 + +### Changed + +- Updated package `alleyinteractive/wp-type-extensions` to ^3.0. +- Removed non-existent `@phpunit` script from `composer.json`. +- CI: Added PHP 8.4 to the test matrix. + ## 2.0.1 - Updated the minimum version of `wp-bulk-task` to ^1.0. diff --git a/composer.json b/composer.json index 6f0958f..ff71034 100644 --- a/composer.json +++ b/composer.json @@ -15,7 +15,7 @@ "alleyinteractive/composer-wordpress-autoloader": "^1.0", "alleyinteractive/wp-bulk-task": "^1.0", "alleyinteractive/wp-match-blocks": "^3.0", - "alleyinteractive/wp-type-extensions": "^2.1" + "alleyinteractive/wp-type-extensions": "^3.0" }, "require-dev": { "alleyinteractive/alley-coding-standards": "^2.0", @@ -66,8 +66,7 @@ "phpstan": "phpstan -v --memory-limit=512M", "test": [ "@phpcs", - "@phpstan", - "@phpunit" + "@phpstan" ], "tidy": "[ $COMPOSER_DEV_MODE -eq 0 ] || composer normalize" } From 2253aa0e7894b9108f0b8191c39a2c0f5649f289 Mon Sep 17 00:00:00 2001 From: Renato Alves <19148962+renatonascalves@users.noreply.github.com> Date: Tue, 14 Jan 2025 07:39:02 -0300 Subject: [PATCH 3/4] Ready for review From 25c7c588776bd4fdaee8e2c94f62df0e4c7597c3 Mon Sep 17 00:00:00 2001 From: Renato Alves <19148962+renatonascalves@users.noreply.github.com> Date: Tue, 14 Jan 2025 15:01:49 -0300 Subject: [PATCH 4/4] Account for 2/3 --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index ff71034..5608e2d 100644 --- a/composer.json +++ b/composer.json @@ -15,7 +15,7 @@ "alleyinteractive/composer-wordpress-autoloader": "^1.0", "alleyinteractive/wp-bulk-task": "^1.0", "alleyinteractive/wp-match-blocks": "^3.0", - "alleyinteractive/wp-type-extensions": "^3.0" + "alleyinteractive/wp-type-extensions": "^2.1|^3.0" }, "require-dev": { "alleyinteractive/alley-coding-standards": "^2.0",