Skip to content

Commit e1d7ab6

Browse files
Prepare release
1 parent 0eae114 commit e1d7ab6

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

ChangeLog-8.5.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 8.5 release series are documented in this file using the [Keep a CHANGELOG](https://keepachangelog.com/) principles.
44

5+
## [8.5.44] - 2025-08-20
6+
7+
### Changed
8+
9+
* Do not configure `report_memleaks` setting (which will be deprecated in PHP 8.5) for PHPT processes
10+
511
## [8.5.43] - 2025-08-10
612

713
### Changed
@@ -334,6 +340,7 @@ All notable changes of the PHPUnit 8.5 release series are documented in this fil
334340
* [#3967](https://github.com/sebastianbergmann/phpunit/issues/3967): Cannot double interface that extends interface that extends `\Throwable`
335341
* [#3968](https://github.com/sebastianbergmann/phpunit/pull/3968): Test class run in a separate PHP process are passing when `exit` called inside
336342

343+
[8.5.44]: https://github.com/sebastianbergmann/phpunit/compare/8.5.43...8.5.44
337344
[8.5.43]: https://github.com/sebastianbergmann/phpunit/compare/8.5.42...8.5.43
338345
[8.5.42]: https://github.com/sebastianbergmann/phpunit/compare/8.5.41...8.5.42
339346
[8.5.41]: https://github.com/sebastianbergmann/phpunit/compare/8.5.40...8.5.41

src/Runner/Version.php

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

4040
if (self::$version === '') {
41-
self::$version = (new VersionId('8.5.43', dirname(__DIR__, 2)))->getVersion();
41+
self::$version = (new VersionId('8.5.44', dirname(__DIR__, 2)))->getVersion();
4242
}
4343

4444
return self::$version;

0 commit comments

Comments
 (0)