Skip to content

Commit 3e94438

Browse files
Start development of next major version
1 parent 973d592 commit 3e94438

File tree

3 files changed

+14
-7
lines changed

3 files changed

+14
-7
lines changed

.github/workflows/ci.yaml

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: 7.0.x-dev
10+
COMPOSER_ROOT_VERSION: 8.0.x-dev
1111
PHP_VERSION: 8.4
1212

1313
permissions:
@@ -89,7 +89,6 @@ jobs:
8989
fail-fast: false
9090
matrix:
9191
php-version:
92-
- 8.3
9392
- 8.4
9493
- 8.5
9594
- 8.6

ChangeLog.md

Lines changed: 8 additions & 1 deletion
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+
## [8.0.0] - 2026-02-06
6+
7+
### Removed
8+
9+
* This component is no longer supported on PHP 8.3
10+
511
## [7.0.0] - 2025-02-07
612

713
### Removed
@@ -157,7 +163,8 @@ All notable changes are documented in this file using the [Keep a CHANGELOG](htt
157163

158164
* This component is no longer supported on PHP 5.6
159165

160-
[7.0.0]: https://github.com/sebastianbergmann/diff/compare/6.0...7.0.0
166+
[8.0.0]: https://github.com/sebastianbergmann/diff/compare/7.0...main
167+
[7.0.0]: https://github.com/sebastianbergmann/diff/compare/6.0.2...7.0.0
161168
[6.0.2]: https://github.com/sebastianbergmann/diff/compare/6.0.1...6.0.2
162169
[6.0.1]: https://github.com/sebastianbergmann/diff/compare/6.0.0...6.0.1
163170
[6.0.0]: https://github.com/sebastianbergmann/diff/compare/5.1...6.0.0

composer.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,20 @@
1818
"issues": "https://github.com/sebastianbergmann/diff/issues",
1919
"security": "https://github.com/sebastianbergmann/diff/security/policy"
2020
},
21+
"minimum-stability": "dev",
2122
"prefer-stable": true,
2223
"config": {
2324
"platform": {
24-
"php": "8.3.0"
25+
"php": "8.4.1"
2526
},
2627
"optimize-autoloader": true,
2728
"sort-packages": true
2829
},
2930
"require": {
30-
"php": ">=8.3"
31+
"php": ">=8.4"
3132
},
3233
"require-dev": {
33-
"phpunit/phpunit": "^12.0",
34+
"phpunit/phpunit": "^13.0",
3435
"symfony/process": "^7.2"
3536
},
3637
"autoload": {
@@ -45,7 +46,7 @@
4546
},
4647
"extra": {
4748
"branch-alias": {
48-
"dev-main": "7.0-dev"
49+
"dev-main": "8.0-dev"
4950
}
5051
}
5152
}

0 commit comments

Comments
 (0)