Skip to content

Commit fc3c97c

Browse files
Start development of PHPUnit 12.2
1 parent c433e79 commit fc3c97c

File tree

13 files changed

+354
-32
lines changed

13 files changed

+354
-32
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: "12.1.x-dev"
12+
COMPOSER_ROOT_VERSION: "12.2.x-dev"
1313

1414
permissions:
1515
contents: read

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
tag: ${{ env.RELEASE_TAG }}
4343
name: PHPUnit ${{ env.RELEASE_TAG }}
4444
bodyFile: release-notes.md
45-
commit: "12.1"
45+
commit: "12.2"
4646

4747
- name: Announce release
4848
id: mastodon

ChangeLog-12.1.md

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

ChangeLog-12.2.md

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

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@
110110
},
111111
"extra": {
112112
"branch-alias": {
113-
"dev-main": "12.1-dev"
113+
"dev-main": "12.2-dev"
114114
}
115115
}
116116
}

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 12.1 may be structured.
5+
This Schema file defines the rules by which the XML configuration file of PHPUnit 12.2 may be structured.
66
</xs:documentation>
77
<xs:appinfo source="https://phpunit.de/documentation.html"/>
88
</xs:annotation>

schema/12.1.xsd

Lines changed: 337 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('12.1.0', dirname(__DIR__, 2)))->asString();
37+
self::$version = (new VersionId('12.2', 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/12.1/phpunit.xsd"
3+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/12.2/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/12.1/phpunit.xsd"
3+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/12.2/phpunit.xsd"
44
backupStaticProperties="true"
55
beStrictAboutCoverageMetadata="true"
66
cacheDirectory=".phpunit.cache"
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/12.1/phpunit.xsd">
3+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/12.2/phpunit.xsd">
44
<coverage/>
55
</phpunit>

tests/_files/XmlConfigurationMigration/output-issue-6087.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/12.1/phpunit.xsd"
3+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/12.2/phpunit.xsd"
44
>
55
<testsuites>
66
<testsuite name="default">

0 commit comments

Comments
 (0)