Skip to content

Commit 9075a8e

Browse files
Prepare release
1 parent 08cb98c commit 9075a8e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

ChangeLog-12.3.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
All notable changes are documented in this file using the [Keep a CHANGELOG](http://keepachangelog.com/) principles.
44

5-
## [12.3.0] - 2025-MM-DD
5+
## [12.3.0] - 2025-05-23
66

77
### Changed
88

9-
* [#1080](https://github.com/sebastianbergmann/php-code-coverage/pull/1080): Add OpenClover XML reporter
9+
* [#1080](https://github.com/sebastianbergmann/php-code-coverage/pull/1080): Support for reporting code coverage information in OpenClover XML reporter; unlike the existing Clover XML reporter, which remains unchanged, this new reporter validates against the OpenClover project's XML schema definition, with one exception: we do not generate `<testproject>` element. This feature is experimental and the generated XML might change in order to improve compliance with the OpenClover project's XML schema definition further. Such changes will be made in bugfix and/or minor releases even if they break backward compatibility.
1010

11-
[12.3.0]: https://github.com/sebastianbergmann/php-code-coverage/compare/12.2.1...main
11+
[12.3.0]: https://github.com/sebastianbergmann/php-code-coverage/compare/12.2.1...12.3.0

src/Version.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ final class Version
1919
public static function id(): string
2020
{
2121
if (self::$version === '') {
22-
self::$version = (new VersionId('12.3', dirname(__DIR__)))->asString();
22+
self::$version = (new VersionId('12.3.0', dirname(__DIR__)))->asString();
2323
}
2424

2525
return self::$version;

0 commit comments

Comments
 (0)