Skip to content

Commit 5c6cf25

Browse files
Start development of next major version
1 parent 535fb76 commit 5c6cf25

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: "6.0.x-dev"
10+
COMPOSER_ROOT_VERSION: "7.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+
## [6.0.0] - 2025-02-07
6+
7+
### Removed
8+
9+
* This component is no longer supported on PHP 8.2
10+
511
## [6.0.2] - 2024-07-03
612

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

5864
* Tests etc. are now ignored for archive exports
5965

66+
[7.0.0]: https://github.com/sebastianbergmann/recursion-context/compare/6.0...main
6067
[6.0.2]: https://github.com/sebastianbergmann/recursion-context/compare/6.0.1...6.0.2
6168
[6.0.1]: https://github.com/sebastianbergmann/recursion-context/compare/6.0.0...6.0.1
6269
[6.0.0]: https://github.com/sebastianbergmann/recursion-context/compare/5.0...6.0.0

composer.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,19 +21,20 @@
2121
"issues": "https://github.com/sebastianbergmann/recursion-context/issues",
2222
"security": "https://github.com/sebastianbergmann/recursion-context/security/policy"
2323
},
24+
"minimum-stability": "dev",
2425
"prefer-stable": true,
2526
"config": {
2627
"platform": {
27-
"php": "8.2.0"
28+
"php": "8.3.0"
2829
},
2930
"optimize-autoloader": true,
3031
"sort-packages": true
3132
},
3233
"require": {
33-
"php": ">=8.2"
34+
"php": ">=8.3"
3435
},
3536
"require-dev": {
36-
"phpunit/phpunit": "^11.3"
37+
"phpunit/phpunit": "^12.0-dev"
3738
},
3839
"autoload": {
3940
"classmap": [
@@ -42,7 +43,7 @@
4243
},
4344
"extra": {
4445
"branch-alias": {
45-
"dev-main": "6.0-dev"
46+
"dev-main": "7.0-dev"
4647
}
4748
}
4849
}

0 commit comments

Comments
 (0)