Skip to content

Commit 05c76e2

Browse files
Prepare release
1 parent caa9fb7 commit 05c76e2

File tree

5 files changed

+5
-71
lines changed

5 files changed

+5
-71
lines changed

ChangeLog-9.2.md

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

ChangeLog-9.3.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,4 +164,4 @@ If you have an XML configuration file that validates against [PHPUnit 9.2's XML
164164
* [#4396](https://github.com/sebastianbergmann/phpunit/issues/4396): Deprecate confusing parameter options for XML assertions
165165
* The `cacheTokens` attribute is no longer supported in XML configuration files
166166

167-
[9.3.0]: https://github.com/sebastianbergmann/phpunit/compare/9.2...master
167+
[9.3.0]: https://github.com/sebastianbergmann/phpunit/compare/9.2...9.3.0

README.md

Lines changed: 3 additions & 3 deletions
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=master&event=push)](https://phpunit.de/build-status.html)
7+
[![CI Status](https://github.com/sebastianbergmann/phpunit/workflows/CI/badge.svg?branch=9.3&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

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

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

17-
$ php phpunit-nightly.phar --version
17+
$ php phpunit-9.3.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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
"issues": "https://github.com/sebastianbergmann/phpunit/issues"
2121
},
2222
"prefer-stable": true,
23-
"minimum-stability": "dev",
2423
"require": {
2524
"php": "^7.3 || ^8.0",
2625
"ext-dom": "*",

src/Runner/Version.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public static function id(): string
3838
}
3939

4040
if (self::$version === '') {
41-
self::$version = (new VersionId('9.3', dirname(__DIR__, 2)))->getVersion();
41+
self::$version = (new VersionId('9.3.0', dirname(__DIR__, 2)))->getVersion();
4242
}
4343

4444
return self::$version;

0 commit comments

Comments
 (0)