Skip to content

Commit 4303365

Browse files
Start development of PHPUnit 10.0
1 parent 8e16c22 commit 4303365

File tree

6 files changed

+14
-7
lines changed

6 files changed

+14
-7
lines changed

ChangeLog-10.0.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Changes in PHPUnit 10.0
2+
3+
All notable changes of the PHPUnit 10.0 release series are documented in this file using the [Keep a CHANGELOG](https://keepachangelog.com/) principles.
4+
5+
## [10.0.0] - 2021-02-05
6+
7+
[10.0.0]: https://github.com/sebastianbergmann/phpunit/compare/9.5...master

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,17 @@ PHPUnit is a programmer-oriented testing framework for PHP. It is an instance of
44

55
[![Latest Stable Version](https://img.shields.io/packagist/v/phpunit/phpunit.svg?style=flat-square)](https://packagist.org/packages/phpunit/phpunit)
66
[![Minimum PHP Version](https://img.shields.io/badge/php-%3E%3D%207.3-8892BF.svg?style=flat-square)](https://php.net/)
7-
[![CI Status](https://github.com/sebastianbergmann/phpunit/workflows/CI/badge.svg?branch=9.5&event=push)](https://phpunit.de/build-status.html)
7+
[![CI Status](https://github.com/sebastianbergmann/phpunit/workflows/CI/badge.svg?branch=master&event=push)](https://phpunit.de/build-status.html)
88
[![Type Coverage](https://shepherd.dev/github/sebastianbergmann/phpunit/coverage.svg)](https://shepherd.dev/github/sebastianbergmann/phpunit)
99

1010
## Installation
1111

12-
We distribute a [PHP Archive (PHAR)](https://php.net/phar) that has all required (as well as some optional) dependencies of PHPUnit 9.5 bundled in a single file:
12+
We distribute a [PHP Archive (PHAR)](https://php.net/phar) that has all required (as well as some optional) dependencies of PHPUnit 10.0 bundled in a single file:
1313

1414
```bash
15-
$ wget https://phar.phpunit.de/phpunit-9.5.phar
15+
$ wget https://phar.phpunit.de/phpunit-nightly.phar
1616

17-
$ php phpunit-9.5.phar --version
17+
$ php phpunit-nightly.phar --version
1818
```
1919

2020
Alternatively, you may use [Composer](https://getcomposer.org/) to download and install PHPUnit as well as its dependencies. Please refer to the "[Getting Started](https://phpunit.de/getting-started-with-phpunit.html)" guide for details on how to install PHPUnit.

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
},
8989
"extra": {
9090
"branch-alias": {
91-
"dev-master": "9.5-dev"
91+
"dev-master": "10.0-dev"
9292
}
9393
}
9494
}

phpunit.xsd

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

src/Runner/Version.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public static function id(): string
4141
}
4242

4343
if (self::$version === '') {
44-
self::$version = (new VersionId('9.5.0', dirname(__DIR__, 2)))->getVersion();
44+
self::$version = (new VersionId('10.0', dirname(__DIR__, 2)))->getVersion();
4545
}
4646

4747
return self::$version;

0 commit comments

Comments
 (0)