Start development of next major version

This commit is contained in:
Sebastian Bergmann 2025-01-16 09:32:01 +01:00
parent 20a3d69003
commit 17e38c7a60
No known key found for this signature in database
GPG Key ID: 4AA394086372C20A
3 changed files with 14 additions and 7 deletions

View File

@ -7,7 +7,7 @@ on:
name: "CI"
env:
COMPOSER_ROOT_VERSION: "6.3.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"

View File

@ -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.3.0] - 2024-12-05
### Added
@ -178,6 +184,7 @@ All notable changes are documented in this file using the [Keep a CHANGELOG](htt
* Remove HHVM-specific code that is no longer needed
[7.0.0]: https://github.com/sebastianbergmann/exporter/compare/6.3...main
[6.3.0]: https://github.com/sebastianbergmann/exporter/compare/6.2.0...6.3.0
[6.2.0]: https://github.com/sebastianbergmann/exporter/compare/6.1.3...6.2.0
[6.1.3]: https://github.com/sebastianbergmann/exporter/compare/6.1.2...6.1.3

View File

@ -32,19 +32,20 @@
},
"config": {
"platform": {
"php": "8.2.0"
"php": "8.3.0"
},
"optimize-autoloader": true,
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8.2",
"php": ">=8.3",
"ext-mbstring": "*",
"sebastian/recursion-context": "^6.0"
"sebastian/recursion-context": "^7.0-dev"
},
"require-dev": {
"phpunit/phpunit": "^11.3"
"phpunit/phpunit": "^12.0-dev"
},
"autoload": {
"classmap": [
@ -58,7 +59,7 @@
},
"extra": {
"branch-alias": {
"dev-main": "6.3-dev"
"dev-main": "7.0-dev"
}
}
}