Skip to content

Commit 75dfe79

Browse files
Prepare release
1 parent 6eb5b02 commit 75dfe79

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

ChangeLog-11.5.md

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

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

5+
## [11.5.46] - 2025-12-06
6+
7+
* No changes; `phpunit.phar` rebuilt with PHP 8.4 to work around PHP-Scoper issue [#1139](https://github.com/humbug/php-scoper/issues/1139)
8+
59
## [11.5.45] - 2025-12-01
610

711
### Changed
@@ -386,6 +390,7 @@ All notable changes of the PHPUnit 11.5 release series are documented in this fi
386390
* [#6055](https://github.com/sebastianbergmann/phpunit/issues/6055): `assertNotContainsOnly()` (use `assertContainsNotOnlyArray()`, `assertContainsNotOnlyBool()`, `assertContainsNotOnlyCallable()`, `assertContainsNotOnlyFloat()`, `assertContainsNotOnlyInt()`, `assertContainsNotOnlyIterable()`, `assertContainsNotOnlyNumeric()`, `assertContainsNotOnlyObject()`, `assertContainsNotOnlyResource()`, `assertContainsNotOnlyClosedResource()`, `assertContainsNotOnlyScalar()`, or `assertContainsNotOnlyString()` instead)
387391
* [#6059](https://github.com/sebastianbergmann/phpunit/issues/6059): `containsOnly()` (use `containsOnlyArray()`, `containsOnlyBool()`, `containsOnlyCallable()`, `containsOnlyFloat()`, `containsOnlyInt()`, `containsOnlyIterable()`, `containsOnlyNumeric()`, `containsOnlyObject()`, `containsOnlyResource()`, `containsOnlyClosedResource()`, `containsOnlyScalar()`, or `containsOnlyString()` instead)
388392

393+
[11.5.46]: https://github.com/sebastianbergmann/phpunit/compare/11.5.45...11.5.46
389394
[11.5.45]: https://github.com/sebastianbergmann/phpunit/compare/11.5.44...11.5.45
390395
[11.5.44]: https://github.com/sebastianbergmann/phpunit/compare/11.5.43...11.5.44
391396
[11.5.43]: https://github.com/sebastianbergmann/phpunit/compare/11.5.42...11.5.43

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('11.5.45', dirname(__DIR__, 2)))->asString();
37+
self::$version = (new VersionId('11.5.46', dirname(__DIR__, 2)))->asString();
3838
}
3939

4040
return self::$version;

0 commit comments

Comments
 (0)