Skip to content

Commit

Permalink
Start development of next major version
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Dec 22, 2023
1 parent 7378b50 commit 51f194a
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 8 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/ci.yml
Expand Up @@ -10,7 +10,7 @@ permissions:
contents: read

env:
COMPOSER_ROOT_VERSION: "6.0-dev"
COMPOSER_ROOT_VERSION: "7.0-dev"

jobs:
coding-guidelines:
Expand Down Expand Up @@ -61,7 +61,6 @@ jobs:
fail-fast: false
matrix:
php-version:
- "8.1"
- "8.2"
- "8.3"
- "8.4"
Expand Down
7 changes: 7 additions & 0 deletions ChangeLog.md
Expand Up @@ -2,6 +2,12 @@

All notable changes in `sebastian/global-state` are documented in this file using the [Keep a CHANGELOG](https://keepachangelog.com/) principles.

## [7.0.0] - 2024-02-02

### Removed

* This component is no longer supported on PHP 8.1

## [6.0.1] - 2023-07-19

### Changed
Expand Down Expand Up @@ -86,6 +92,7 @@ All notable changes in `sebastian/global-state` are documented in this file usin

* This component is no longer supported on PHP 7.0 and PHP 7.1

[7.0.0]: https://github.com/sebastianbergmann/global-state/compare/6.0...main
[6.0.1]: https://github.com/sebastianbergmann/global-state/compare/6.0.0...6.0.1
[6.0.0]: https://github.com/sebastianbergmann/global-state/compare/5.0.5...6.0.0
[5.0.5]: https://github.com/sebastianbergmann/global-state/compare/5.0.4...5.0.5
Expand Down
13 changes: 7 additions & 6 deletions composer.json
Expand Up @@ -15,21 +15,22 @@
"security": "https://github.com/sebastianbergmann/global-state/security/policy"
},
"prefer-stable": true,
"minimum-stability": "dev",
"config": {
"platform": {
"php": "8.1.0"
"php": "8.2.0"
},
"optimize-autoloader": true,
"sort-packages": true
},
"require": {
"php": ">=8.1",
"sebastian/object-reflector": "^3.0",
"sebastian/recursion-context": "^5.0"
"php": ">=8.2",
"sebastian/object-reflector": "^4.0",
"sebastian/recursion-context": "^6.0"
},
"require-dev": {
"ext-dom": "*",
"phpunit/phpunit": "^10.0"
"phpunit/phpunit": "^11.0"
},
"autoload": {
"classmap": [
Expand All @@ -46,7 +47,7 @@
},
"extra": {
"branch-alias": {
"dev-main": "6.0-dev"
"dev-main": "7.0-dev"
}
}
}

0 comments on commit 51f194a

Please sign in to comment.