Skip to content

Commit ef9ca85

Browse files
Prepare release
1 parent c4530f6 commit ef9ca85

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

ChangeLog-12.0.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
All notable changes of the PHPUnit 12.0 release series are documented in this file using the [Keep a CHANGELOG](https://keepachangelog.com/) principles.
44

5+
## [12.0.8] - 2025-03-18
6+
7+
### Changed
8+
9+
* [#6150](https://github.com/sebastianbergmann/phpunit/issues/6150): Trigger warning when code coverage analysis is performed and no cache directory is configured
10+
511
## [12.0.7] - 2025-03-07
612

713
### Fixed
@@ -98,6 +104,7 @@ All notable changes of the PHPUnit 12.0 release series are documented in this fi
98104
* [#5801](https://github.com/sebastianbergmann/phpunit/issues/5801): Support for targeting traits with `#[CoversClass]` and `#[UsesClass]` attributes
99105
* [#5978](https://github.com/sebastianbergmann/phpunit/issues/5978): Support for PHP 8.2
100106

107+
[12.0.8]: https://github.com/sebastianbergmann/phpunit/compare/12.0.7...12.0.8
101108
[12.0.7]: https://github.com/sebastianbergmann/phpunit/compare/12.0.6...12.0.7
102109
[12.0.6]: https://github.com/sebastianbergmann/phpunit/compare/12.0.5...12.0.6
103110
[12.0.5]: https://github.com/sebastianbergmann/phpunit/compare/12.0.4...12.0.5

src/Runner/Version.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public static function id(): string
3434
}
3535

3636
if (self::$version === '') {
37-
self::$version = (new VersionId('12.0.7', dirname(__DIR__, 2)))->asString();
37+
self::$version = (new VersionId('12.0.8', dirname(__DIR__, 2)))->asString();
3838
}
3939

4040
return self::$version;

0 commit comments

Comments
 (0)