Skip to content

Commit

Permalink
Prepare release
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Oct 4, 2019
1 parent 4d2e3f8 commit 57e5e77
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 70 deletions.
65 changes: 0 additions & 65 deletions ChangeLog-8.3.md

This file was deleted.

2 changes: 1 addition & 1 deletion ChangeLog-8.4.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ All notable changes of the PHPUnit 8.4 release series are documented in this fil

* The method `expectExceptionMessageRegExp()` is now deprecated. There is no behavioral change in this version of PHPUnit. Using this method will trigger a deprecation warning in PHPUnit 9 and in PHPUnit 10 it will be removed. Please use `expectExceptionMessageMatches()` instead.

[8.4.0]: https://github.com/sebastianbergmann/phpunit/compare/8.3...8.4.0
[8.4.0]: https://github.com/sebastianbergmann/phpunit/compare/8.3.5...8.4.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.2-8892BF.svg?style=flat-square)](https://php.net/)
[![Build Status](https://img.shields.io/travis/sebastianbergmann/phpunit/master.svg?style=flat-square)](https://phpunit.de/build-status.html)
[![Build Status](https://img.shields.io/travis/sebastianbergmann/phpunit/8.4.svg?style=flat-square)](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 8.4 bundled in a single file:

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

$ php phpunit-nightly.phar --version
$ php phpunit-8.4.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
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.4', \dirname(__DIR__, 2)))->getVersion();
self::$version = (new VersionId('8.4.0', \dirname(__DIR__, 2)))->getVersion();
}

return self::$version;
Expand Down

0 comments on commit 57e5e77

Please sign in to comment.