Skip to content

Commit aa0f95b

Browse files
Start development of next major version
1 parent 9abd403 commit aa0f95b

File tree

4 files changed

+14
-7
lines changed

4 files changed

+14
-7
lines changed

.github/workflows/ci.yml

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

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

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

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

140146
* This component is no longer supported on PHP 5.3, PHP 5.4, PHP 5.5, PHP 5.6, and PHP 7.0
141147

148+
[8.0.0]: https://github.com/sebastianbergmann/php-timer/compare/7.0...main
142149
[7.0.1]: https://github.com/sebastianbergmann/php-timer/compare/7.0.0...7.0.1
143150
[7.0.0]: https://github.com/sebastianbergmann/php-timer/compare/6.0...7.0.0
144151
[6.0.0]: https://github.com/sebastianbergmann/php-timer/compare/5.0.3...6.0.0

composer.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,17 @@
1818
"issues": "https://github.com/sebastianbergmann/php-timer/issues",
1919
"security": "https://github.com/sebastianbergmann/php-timer/security/policy"
2020
},
21+
"minimum-stability": "dev",
2122
"prefer-stable": true,
2223
"require": {
23-
"php": ">=8.2"
24+
"php": ">=8.3"
2425
},
2526
"require-dev": {
26-
"phpunit/phpunit": "^11.3"
27+
"phpunit/phpunit": "^12.0-dev"
2728
},
2829
"config": {
2930
"platform": {
30-
"php": "8.2.0"
31+
"php": "8.3.0"
3132
},
3233
"optimize-autoloader": true,
3334
"sort-packages": true
@@ -39,7 +40,7 @@
3940
},
4041
"extra": {
4142
"branch-alias": {
42-
"dev-main": "7.0-dev"
43+
"dev-main": "8.0-dev"
4344
}
4445
}
4546
}

src/ResourceUsageFormatter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ final class ResourceUsageFormatter
1919
/**
2020
* @var array<string,int>
2121
*/
22-
private const SIZES = [
22+
private const array SIZES = [
2323
'GB' => 1073741824,
2424
'MB' => 1048576,
2525
'KB' => 1024,

0 commit comments

Comments
 (0)