Skip to content

Commit

Permalink
Prepare release
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Aug 7, 2020
1 parent caa9fb7 commit 05c76e2
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 71 deletions.
65 changes: 0 additions & 65 deletions ChangeLog-9.2.md

This file was deleted.

2 changes: 1 addition & 1 deletion ChangeLog-9.3.md
Original file line number Diff line number Diff line change
Expand Up @@ -164,4 +164,4 @@ If you have an XML configuration file that validates against [PHPUnit 9.2's XML
* [#4396](https://github.com/sebastianbergmann/phpunit/issues/4396): Deprecate confusing parameter options for XML assertions
* The `cacheTokens` attribute is no longer supported in XML configuration files

[9.3.0]: https://github.com/sebastianbergmann/phpunit/compare/9.2...master
[9.3.0]: https://github.com/sebastianbergmann/phpunit/compare/9.2...9.3.0
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@ PHPUnit is a programmer-oriented testing framework for PHP. It is an instance of

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

## Installation

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:

```bash
$ wget https://phar.phpunit.de/phpunit-nightly.phar
$ wget https://phar.phpunit.de/phpunit-9.3.phar

$ php phpunit-nightly.phar --version
$ php phpunit-9.3.phar --version
```

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.
Expand Down
1 change: 0 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
"issues": "https://github.com/sebastianbergmann/phpunit/issues"
},
"prefer-stable": true,
"minimum-stability": "dev",
"require": {
"php": "^7.3 || ^8.0",
"ext-dom": "*",
Expand Down
2 changes: 1 addition & 1 deletion src/Runner/Version.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public static function id(): string
}

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

return self::$version;
Expand Down

0 comments on commit 05c76e2

Please sign in to comment.