Skip to content

Commit

Permalink
Start development of PHPUnit 10.4
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Aug 2, 2023
1 parent b4d6098 commit e96e28f
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 28 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Expand Up @@ -7,7 +7,7 @@ on:
name: CI

env:
COMPOSER_ROOT_VERSION: "10.3-dev"
COMPOSER_ROOT_VERSION: "10.4-dev"

permissions:
contents: read
Expand Down
22 changes: 0 additions & 22 deletions ChangeLog-10.3.md

This file was deleted.

7 changes: 7 additions & 0 deletions ChangeLog-10.4.md
@@ -0,0 +1,7 @@
# Changes in PHPUnit 10.4

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

## [10.4.0] - 2023-10-06

[10.4.0]: https://github.com/sebastianbergmann/phpunit/compare/10.3...main
2 changes: 1 addition & 1 deletion composer.json
Expand Up @@ -84,7 +84,7 @@
},
"extra": {
"branch-alias": {
"dev-main": "10.3-dev"
"dev-main": "10.4-dev"
}
}
}
2 changes: 1 addition & 1 deletion phpunit.xsd
Expand Up @@ -2,7 +2,7 @@
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:annotation>
<xs:documentation source="https://phpunit.de/documentation.html">
This Schema file defines the rules by which the XML configuration file of PHPUnit 10.3 may be structured.
This Schema file defines the rules by which the XML configuration file of PHPUnit 10.4 may be structured.
</xs:documentation>
<xs:appinfo source="https://phpunit.de/documentation.html"/>
</xs:annotation>
Expand Down
2 changes: 1 addition & 1 deletion src/Runner/Version.php
Expand Up @@ -34,7 +34,7 @@ public static function id(): string
}

if (self::$version === '') {
self::$version = (new VersionId('10.3', dirname(__DIR__, 2)))->asString();
self::$version = (new VersionId('10.4', dirname(__DIR__, 2)))->asString();
}

return self::$version;
Expand Down
2 changes: 1 addition & 1 deletion tests/_files/XmlConfigurationMigration/output-9.2.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.3/phpunit.xsd"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.4/phpunit.xsd"
cacheDirectory=".phpunit.cache">

<coverage includeUncoveredFiles="true"
Expand Down
2 changes: 1 addition & 1 deletion tests/_files/XmlConfigurationMigration/output-9.5.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.3/phpunit.xsd"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.4/phpunit.xsd"
backupStaticProperties="true"
beStrictAboutCoverageMetadata="true"
cacheDirectory=".phpunit.cache"
Expand Down

0 comments on commit e96e28f

Please sign in to comment.