Skip to content

Commit 0199874

Browse files
Start development of next major version
1 parent 824e778 commit 0199874

File tree

3 files changed

+13
-6
lines changed

3 files changed

+13
-6
lines changed

.github/workflows/ci.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
name: "CI"
88

99
env:
10-
COMPOSER_ROOT_VERSION: "4.0.x-dev"
10+
COMPOSER_ROOT_VERSION: "5.0.x-dev"
1111

1212
permissions:
1313
contents: read
@@ -61,7 +61,6 @@ jobs:
6161
fail-fast: false
6262
matrix:
6363
php-version:
64-
- "8.2"
6564
- "8.3"
6665
- "8.4"
6766
- "8.5"

ChangeLog.md

+7
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+
## [5.0.0] - 2025-02-07
6+
7+
### Removed
8+
9+
* This component is no longer supported on PHP 8.2
10+
511
## [4.0.1] - 2024-07-03
612

713
### Changed
@@ -61,6 +67,7 @@ All notable changes are documented in this file using the [Keep a CHANGELOG](htt
6167

6268
* Removed support for PHP 5.3, PHP 5.4, PHP 5.5, PHP 5.6, PHP 7.0, PHP 7.1, and PHP 7.2
6369

70+
[5.0.0]: https://github.com/sebastianbergmann/php-text-template/compare/4.0...main
6471
[4.0.1]: https://github.com/sebastianbergmann/php-text-template/compare/4.0.0...4.0.1
6572
[4.0.0]: https://github.com/sebastianbergmann/php-text-template/compare/3.0...4.0.0
6673
[3.0.1]: https://github.com/sebastianbergmann/php-text-template/compare/3.0.0...3.0.1

composer.json

+5-4
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,18 @@
2020
},
2121
"config": {
2222
"platform": {
23-
"php": "8.2.0"
23+
"php": "8.3.0"
2424
},
2525
"optimize-autoloader": true,
2626
"sort-packages": true
2727
},
28+
"minimum-stability": "dev",
2829
"prefer-stable": true,
2930
"require": {
30-
"php": ">=8.2"
31+
"php": ">=8.3"
3132
},
3233
"require-dev": {
33-
"phpunit/phpunit": "^11.3"
34+
"phpunit/phpunit": "^12.0-dev"
3435
},
3536
"autoload": {
3637
"classmap": [
@@ -39,7 +40,7 @@
3940
},
4041
"extra": {
4142
"branch-alias": {
42-
"dev-main": "4.0-dev"
43+
"dev-main": "5.0-dev"
4344
}
4445
}
4546
}

0 commit comments

Comments
 (0)