From 571c834c1ad19500c2582c11397cba99b13897c1 Mon Sep 17 00:00:00 2001 From: Sebastian Bergmann Date: Fri, 22 Dec 2023 10:42:11 +0100 Subject: [PATCH] Start development of next major version --- .github/workflows/ci.yml | 3 +-- ChangeLog.md | 7 +++++++ composer.json | 9 +++++---- 3 files changed, 13 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b3c276d..c206343 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,7 +7,7 @@ on: name: "CI" env: - COMPOSER_ROOT_VERSION: "2.0-dev" + COMPOSER_ROOT_VERSION: "3.0-dev" permissions: contents: read @@ -61,7 +61,6 @@ jobs: fail-fast: false matrix: php-version: - - "8.1" - "8.2" - "8.3" - "8.4" diff --git a/ChangeLog.md b/ChangeLog.md index 2880ddb..d19d754 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -2,6 +2,12 @@ All notable changes are documented in this file using the [Keep a CHANGELOG](https://keepachangelog.com/) principles. +## [3.0.0] - 2024-02-02 + +### Removed + +* This component is no longer supported on PHP 8.1 + ## [2.0.0] - 2023-02-03 ### Removed @@ -18,6 +24,7 @@ All notable changes are documented in this file using the [Keep a CHANGELOG](htt * Initial release +[3.0.0]: https://github.com/sebastianbergmann/cli-parser/compare/2.0...main [2.0.0]: https://github.com/sebastianbergmann/cli-parser/compare/1.0.1...2.0.0 [1.0.1]: https://github.com/sebastianbergmann/cli-parser/compare/1.0.0...1.0.1 [1.0.0]: https://github.com/sebastianbergmann/cli-parser/compare/bb7bb3297957927962b0a3335befe7b66f7462e9...1.0.0 diff --git a/composer.json b/composer.json index 51b7447..c306fcf 100644 --- a/composer.json +++ b/composer.json @@ -16,15 +16,16 @@ "security": "https://github.com/sebastianbergmann/cli-parser/security/policy" }, "prefer-stable": true, + "minimum-stability": "dev", "require": { - "php": ">=8.1" + "php": ">=8.2" }, "require-dev": { - "phpunit/phpunit": "^10.0" + "phpunit/phpunit": "^11.0" }, "config": { "platform": { - "php": "8.1.0" + "php": "8.2.0" }, "optimize-autoloader": true, "sort-packages": true @@ -36,7 +37,7 @@ }, "extra": { "branch-alias": { - "dev-main": "2.0-dev" + "dev-main": "3.0-dev" } } }