Skip to content

Commit 7f79d38

Browse files
Start development of next major version
1 parent 02c4009 commit 7f79d38

File tree

3 files changed

+13
-6
lines changed

3 files changed

+13
-6
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
name: "CI"
88

99
env:
10-
COMPOSER_ROOT_VERSION: "3.0.x-dev"
10+
COMPOSER_ROOT_VERSION: "4.0.x-dev"
1111

1212
permissions:
1313
contents: read
@@ -61,7 +61,6 @@ jobs:
6161
fail-fast: false
6262
matrix:
6363
php-version:
64-
- "8.2"
6564
- "8.3"
6665
- "8.4"
6766
- "8.5"

ChangeLog.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
All notable changes are documented in this file using the [Keep a CHANGELOG](https://keepachangelog.com/) principles.
44

5+
## [4.0.0] - 2025-02-07
6+
7+
### Removed
8+
9+
* This component is no longer supported on PHP 8.2
10+
511
## [3.0.2] - 2024-07-03
612

713
### Changed
@@ -42,6 +48,7 @@ All notable changes are documented in this file using the [Keep a CHANGELOG](htt
4248

4349
* Initial release
4450

51+
[4.0.0]: https://github.com/sebastianbergmann/cli-parser/compare/3.0...main
4552
[3.0.2]: https://github.com/sebastianbergmann/cli-parser/compare/3.0.1...3.0.2
4653
[3.0.1]: https://github.com/sebastianbergmann/cli-parser/compare/3.0.0...3.0.1
4754
[3.0.0]: https://github.com/sebastianbergmann/cli-parser/compare/2.0...3.0.0

composer.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,17 @@
1515
"issues": "https://github.com/sebastianbergmann/cli-parser/issues",
1616
"security": "https://github.com/sebastianbergmann/cli-parser/security/policy"
1717
},
18+
"minimum-stability": "dev",
1819
"prefer-stable": true,
1920
"require": {
20-
"php": ">=8.2"
21+
"php": ">=8.3"
2122
},
2223
"require-dev": {
23-
"phpunit/phpunit": "^11.3"
24+
"phpunit/phpunit": "^12.0-dev"
2425
},
2526
"config": {
2627
"platform": {
27-
"php": "8.2.0"
28+
"php": "8.3.0"
2829
},
2930
"optimize-autoloader": true,
3031
"sort-packages": true
@@ -36,7 +37,7 @@
3637
},
3738
"extra": {
3839
"branch-alias": {
39-
"dev-main": "3.0-dev"
40+
"dev-main": "4.0-dev"
4041
}
4142
}
4243
}

0 commit comments

Comments
 (0)