Skip to content

Commit 79dee3d

Browse files
Prepare release
1 parent ead5e46 commit 79dee3d

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

ChangeLog-12.5.md

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

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

5-
## [12.5.7] - 2026-MM-DD
5+
## [12.5.7] - 2026-01-24
66

77
### Fixed
88

@@ -17,6 +17,10 @@ All notable changes of the PHPUnit 12.5 release series are documented in this fi
1717

1818
## [12.5.5] - 2026-01-15
1919

20+
### Changed
21+
22+
* `PHPUnit\Framework\MockObject` exceptions are now subtypes of `PHPUnit\Exception`
23+
2024
### Deprecated
2125

2226
* [#6461](https://github.com/sebastianbergmann/phpunit/issues/6461): `any()` matcher (soft deprecation)
@@ -65,7 +69,7 @@ All notable changes of the PHPUnit 12.5 release series are documented in this fi
6569
* [#6380](https://github.com/sebastianbergmann/phpunit/pull/6380): Allow `Throwable` in `expectExceptionObject()`
6670
* A PHPUnit notice is now emitted for test methods that create a mock object but do not configure an expectation for it
6771

68-
[12.5.7]: https://github.com/sebastianbergmann/phpunit/compare/12.5.6...12.5
72+
[12.5.7]: https://github.com/sebastianbergmann/phpunit/compare/12.5.6...12.5.7
6973
[12.5.6]: https://github.com/sebastianbergmann/phpunit/compare/12.5.5...12.5.6
7074
[12.5.5]: https://github.com/sebastianbergmann/phpunit/compare/12.5.4...12.5.5
7175
[12.5.4]: https://github.com/sebastianbergmann/phpunit/compare/12.5.3...12.5.4

src/Runner/Version.php

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

3737
if (self::$version === '') {
38-
self::$version = (new VersionId('12.5.6', dirname(__DIR__, 2)))->asString();
38+
self::$version = (new VersionId('12.5.7', dirname(__DIR__, 2)))->asString();
3939
}
4040

4141
return self::$version;

0 commit comments

Comments
 (0)