Skip to content

Commit f7664cc

Browse files
Start development of PHPUnit 11.3
1 parent 705eba0 commit f7664cc

File tree

10 files changed

+347
-24
lines changed

10 files changed

+347
-24
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.2-dev"
12+
COMPOSER_ROOT_VERSION: "11.3-dev"
1313

1414
permissions:
1515
contents: read

ChangeLog-11.2.md

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

ChangeLog-11.3.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Changes in PHPUnit 11.3
2+
3+
All notable changes of the PHPUnit 11.3 release series are documented in this file using the [Keep a CHANGELOG](https://keepachangelog.com/) principles.
4+
5+
## [11.3.0] - 2024-08-09
6+
7+
[11.3.0]: https://github.com/sebastianbergmann/phpunit/compare/11.2...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.2-dev"
86+
"dev-main": "11.3-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.2 may be structured.
5+
This Schema file defines the rules by which the XML configuration file of PHPUnit 11.3 may be structured.
66
</xs:documentation>
77
<xs:appinfo source="https://phpunit.de/documentation.html"/>
88
</xs:annotation>

schema/11.2.xsd

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

4040
return self::$version;

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.2/phpunit.xsd"
3+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.3/phpunit.xsd"
44
cacheDirectory=".phpunit.cache">
55

66
<coverage includeUncoveredFiles="true"

tests/_files/XmlConfigurationMigration/output-9.5.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.2/phpunit.xsd"
3+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.3/phpunit.xsd"
44
backupStaticProperties="true"
55
beStrictAboutCoverageMetadata="true"
66
cacheDirectory=".phpunit.cache"

0 commit comments

Comments
 (0)