Skip to content

Commit 972e0c0

Browse files
Start development of next major version
1 parent fbf413a commit 972e0c0

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
@@ -10,7 +10,7 @@ permissions:
1010
contents: read
1111

1212
env:
13-
COMPOSER_ROOT_VERSION: "5.1-dev"
13+
COMPOSER_ROOT_VERSION: "6.0-dev"
1414

1515
jobs:
1616
coding-guidelines:
@@ -61,7 +61,6 @@ jobs:
6161
fail-fast: false
6262
matrix:
6363
php-version:
64-
- "8.1"
6564
- "8.2"
6665
- "8.3"
6766
- "8.4"

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](http://keepachangelog.com/) principles.
44

5+
## [6.0.0] - 2024-02-02
6+
7+
### Removed
8+
9+
* Removed support for PHP 8.1
10+
511
## [5.1.0] - 2023-12-22
612

713
### Added
@@ -124,6 +130,7 @@ All notable changes are documented in this file using the [Keep a CHANGELOG](htt
124130

125131
* This component is no longer supported on PHP 5.6
126132

133+
[6.0.0]: https://github.com/sebastianbergmann/diff/compare/5.1...main
127134
[5.1.0]: https://github.com/sebastianbergmann/diff/compare/5.0.3...5.1.0
128135
[5.0.3]: https://github.com/sebastianbergmann/diff/compare/5.0.2...5.0.3
129136
[5.0.2]: https://github.com/sebastianbergmann/diff/compare/5.0.1...5.0.2

composer.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,18 +19,19 @@
1919
"security": "https://github.com/sebastianbergmann/diff/security/policy"
2020
},
2121
"prefer-stable": true,
22+
"minimum-stability": "dev",
2223
"config": {
2324
"platform": {
24-
"php": "8.1.0"
25+
"php": "8.2.0"
2526
},
2627
"optimize-autoloader": true,
2728
"sort-packages": true
2829
},
2930
"require": {
30-
"php": ">=8.1"
31+
"php": ">=8.2"
3132
},
3233
"require-dev": {
33-
"phpunit/phpunit": "^10.0",
34+
"phpunit/phpunit": "^11.0",
3435
"symfony/process": "^4.2 || ^5"
3536
},
3637
"autoload": {
@@ -45,7 +46,7 @@
4546
},
4647
"extra": {
4748
"branch-alias": {
48-
"dev-main": "5.1-dev"
49+
"dev-main": "6.0-dev"
4950
}
5051
}
5152
}

0 commit comments

Comments
 (0)