Skip to content

Commit 2439f65

Browse files
Start development of PHPUnit 12.4
1 parent c5f93f4 commit 2439f65

File tree

13 files changed

+365
-37
lines changed

13 files changed

+365
-37
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.3.x-dev"
12+
COMPOSER_ROOT_VERSION: "12.4.x-dev"
1313
PHP_VERSION: 8.4
1414

1515
permissions:

.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.3"
45+
commit: "12.4"
4646

4747
- name: Announce release
4848
id: mastodon

ChangeLog-12.3.md

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

ChangeLog-12.4.md

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

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@
112112
},
113113
"extra": {
114114
"branch-alias": {
115-
"dev-main": "12.3-dev"
115+
"dev-main": "12.4-dev"
116116
}
117117
}
118118
}

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

schema/12.3.xsd

Lines changed: 348 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
@@ -35,7 +35,7 @@ public static function id(): string
3535
}
3636

3737
if (self::$version === '') {
38-
self::$version = (new VersionId('12.3', dirname(__DIR__, 2)))->asString();
38+
self::$version = (new VersionId('12.4', dirname(__DIR__, 2)))->asString();
3939
}
4040

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

66
<coverage includeUncoveredFiles="true"

0 commit comments

Comments
 (0)