Skip to content

Commit

Permalink
Start development of PHPUnit 8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Jun 7, 2019
1 parent 2cbd01b commit cb727d7
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions ChangeLog-8.3.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Changes in PHPUnit 8.3

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

## [8.3.0] - 2019-08-02

[8.3.0]: https://github.com/sebastianbergmann/phpunit/compare/8.2...8.3.0

2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
},
"extra": {
"branch-alias": {
"dev-master": "8.2-dev"
"dev-master": "8.3-dev"
}
}
}
2 changes: 1 addition & 1 deletion phpunit.xsd
Original file line number Diff line number Diff line change
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 8.2 may be structured.
This Schema file defines the rules by which the XML configuration file of PHPUnit 8.3 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
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public static function id(): string
}

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

return self::$version;
Expand Down

0 comments on commit cb727d7

Please sign in to comment.