Skip to content
Snippets Groups Projects
Unverified Commit c9442e27 authored by Sebastian Bergmann's avatar Sebastian Bergmann
Browse files

Start development of next major version

parent 535fb763
No related branches found
No related tags found
No related merge requests found
......@@ -7,7 +7,7 @@ on:
name: "CI"
env:
COMPOSER_ROOT_VERSION: "6.0.x-dev"
COMPOSER_ROOT_VERSION: "7.0.x-dev"
permissions:
contents: read
......@@ -61,7 +61,6 @@ jobs:
fail-fast: false
matrix:
php-version:
- "8.2"
- "8.3"
- "8.4"
- "8.5"
......
......@@ -2,6 +2,12 @@
All notable changes are documented in this file using the [Keep a CHANGELOG](https://keepachangelog.com/) principles.
## [7.0.0] - 2025-02-07
### Removed
* This component is no longer supported on PHP 8.2
## [6.0.2] - 2024-07-03
### Changed
......@@ -57,6 +63,7 @@ All notable changes are documented in this file using the [Keep a CHANGELOG](htt
* Tests etc. are now ignored for archive exports
[7.0.0]: https://github.com/sebastianbergmann/recursion-context/compare/6.0...main
[6.0.2]: https://github.com/sebastianbergmann/recursion-context/compare/6.0.1...6.0.2
[6.0.1]: https://github.com/sebastianbergmann/recursion-context/compare/6.0.0...6.0.1
[6.0.0]: https://github.com/sebastianbergmann/recursion-context/compare/5.0...6.0.0
......
......@@ -21,19 +21,20 @@
"issues": "https://github.com/sebastianbergmann/recursion-context/issues",
"security": "https://github.com/sebastianbergmann/recursion-context/security/policy"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"platform": {
"php": "8.2.0"
"php": "8.3.0"
},
"optimize-autoloader": true,
"sort-packages": true
},
"require": {
"php": ">=8.2"
"php": ">=8.3"
},
"require-dev": {
"phpunit/phpunit": "^11.3"
"phpunit/phpunit": "^12.0-dev"
},
"autoload": {
"classmap": [
......@@ -42,7 +43,7 @@
},
"extra": {
"branch-alias": {
"dev-main": "6.0-dev"
"dev-main": "7.0-dev"
}
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment