From ddec29dfc128eba9c204389960f2063f3b7fa170 Mon Sep 17 00:00:00 2001
From: Sebastian Bergmann <sb@sebastian-bergmann.de>
Date: Wed, 18 Jun 2025 10:58:13 +0200
Subject: [PATCH] Prepare release
---
ChangeLog-12.3.md | 8 ++++++++
src/Version.php | 2 +-
2 files changed, 9 insertions(+), 1 deletion(-)
diff --git a/ChangeLog-12.3.md b/ChangeLog-12.3.md
index d1c9980b..4dbea8d2 100644
--- a/ChangeLog-12.3.md
+++ b/ChangeLog-12.3.md
@@ -2,10 +2,18 @@
All notable changes are documented in this file using the [Keep a CHANGELOG](http://keepachangelog.com/) principles.
+## [12.3.1] - 2025-06-18
+
+### Changed
+
+* Changed CSS for HTML report to not use common ligatures as this sometimes lead to hard-to-read code
+* Updated Bootstrap to version 5.3.6 for HTML report
+
## [12.3.0] - 2025-05-23
### Changed
* [#1080](https://github.com/sebastianbergmann/php-code-coverage/pull/1080): Support for reporting code coverage information in OpenClover XML format; unlike the existing Clover XML reporter, which remains unchanged, the XML documents generated by this new reporter validate against the OpenClover project's XML schema definition, with one exception: we do not generate the `<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.
+[12.3.1]: https://github.com/sebastianbergmann/php-code-coverage/compare/12.3.0...12.3.1
[12.3.0]: https://github.com/sebastianbergmann/php-code-coverage/compare/12.2.1...12.3.0
diff --git a/src/Version.php b/src/Version.php
index 790dbcfb..69baec3e 100644
--- a/src/Version.php
+++ b/src/Version.php
@@ -19,7 +19,7 @@ final class Version
public static function id(): string
{
if (self::$version === '') {
- self::$version = (new VersionId('12.3.0', dirname(__DIR__)))->asString();
+ self::$version = (new VersionId('12.3.1', dirname(__DIR__)))->asString();
}
return self::$version;
--
GitLab