Skip to content

Commit

Permalink
Start development of PHPUnit 7.4
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Aug 3, 2018
1 parent 0b6b29f commit 1076487
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions ChangeLog-7.4.md
@@ -0,0 +1,8 @@
# Changes in PHPUnit 7.4

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

## [7.4.0] - 2018-10-05

[7.4.0]: https://github.com/sebastianbergmann/phpunit/compare/7.3...7.4.0

2 changes: 1 addition & 1 deletion composer.json
Expand Up @@ -84,7 +84,7 @@
},
"extra": {
"branch-alias": {
"dev-master": "7.3-dev"
"dev-master": "7.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 7.3 may be structured.
This Schema file defines the rules by which the XML configuration file of PHPUnit 7.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 @@ -30,7 +30,7 @@ public static function id(): string
}

if (self::$version === null) {
$version = new VersionId('7.3.0', \dirname(__DIR__, 2));
$version = new VersionId('7.4', \dirname(__DIR__, 2));
self::$version = $version->getVersion();
}

Expand Down

0 comments on commit 1076487

Please sign in to comment.