Skip to content

Commit dab0207

Browse files
Start development of PHPUnit 11.5
1 parent 89fe0c5 commit dab0207

File tree

11 files changed

+349
-34
lines changed

11 files changed

+349
-34
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
name: CI
1010

1111
env:
12-
COMPOSER_ROOT_VERSION: "11.4.x-dev"
12+
COMPOSER_ROOT_VERSION: "11.5.x-dev"
1313

1414
permissions:
1515
contents: read

ChangeLog-11.4.md

Lines changed: 0 additions & 26 deletions
This file was deleted.

ChangeLog-11.5.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Changes in PHPUnit 11.5
2+
3+
All notable changes of the PHPUnit 11.5 release series are documented in this file using the [Keep a CHANGELOG](https://keepachangelog.com/) principles.
4+
5+
## [11.5.0] - 2024-12-06
6+
7+
[11.5.0]: https://github.com/sebastianbergmann/phpunit/compare/11.4...main

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
8383
},
8484
"extra": {
8585
"branch-alias": {
86-
"dev-main": "11.4-dev"
86+
"dev-main": "11.5-dev"
8787
}
8888
}
8989
}

composer.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

phpunit.xsd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
33
<xs:annotation>
44
<xs:documentation source="https://phpunit.de/documentation.html">
5-
This Schema file defines the rules by which the XML configuration file of PHPUnit 11.4 may be structured.
5+
This Schema file defines the rules by which the XML configuration file of PHPUnit 11.5 may be structured.
66
</xs:documentation>
77
<xs:appinfo source="https://phpunit.de/documentation.html"/>
88
</xs:annotation>

schema/11.4.xsd

Lines changed: 334 additions & 0 deletions
Large diffs are not rendered by default.

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

4040
return self::$version;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.4/phpunit.xsd">
3+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.5/phpunit.xsd">
44
<coverage/>
55
</phpunit>

tests/_files/XmlConfigurationMigration/output-9.2.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.4/phpunit.xsd"
3+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.5/phpunit.xsd"
44
cacheDirectory=".phpunit.cache">
55

66
<coverage ignoreDeprecatedCodeUnits="true"

0 commit comments

Comments
 (0)