Skip to content

Commit

Permalink
Changelog for the 1.0.5 release
Browse files Browse the repository at this point in the history
Includes updating the `VERSION` constant in the `Autoload` class.

Includes minor documentation addition in CI test workflow.
  • Loading branch information
jrfnl committed Mar 30, 2023
1 parent 6f7c1f6 commit 857c550
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:

# Experimental builds.
- php: '8.3'
phpunit: 'auto'
phpunit: 'auto' # PHPUnit 9.x.
experimental: true

- php: '8.1'
Expand Down
31 changes: 31 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,36 @@ This projects adheres to [Keep a CHANGELOG](http://keepachangelog.com/) and uses

_Nothing yet._

## [1.0.5] - 2023-03-31

### Fixed
* A custom `$message` parameter passed to an assertion, will no longer overrule an emulated "assertion failed" message, but will be prefixed to it instead. PR [#97]
This applies to the following polyfills:
- `assertIsClosedResource()`
- `assertIsNotClosedResource()`
- `assertIsReadable()`
- `assertNotIsReadable()`
- `assertIsWritable()`
- `assertNotIsWritable()`
- `assertDirectoryExists()`
- `assertDirectoryNotExists()`
- `assertStringNotContainsString()`
- `assertStringNotContainsStringIgnoringCase()`

### Changed
* The `develop` branch has been removed. Development will now take place in the `1.x` and `2.x` branches.
* README: links to the PHPUnit manual now point explicitly to the PHPUnit 9.x documentation. PR [#94]
* README: new sub-section about PHPUnit version support. PR [#99]
* README: various minor improvements. PRs [#92], [#93]
* General housekeeping.

[#92]: https://github.com/Yoast/PHPUnit-Polyfills/pull/92
[#93]: https://github.com/Yoast/PHPUnit-Polyfills/pull/93
[#94]: https://github.com/Yoast/PHPUnit-Polyfills/pull/94
[#97]: https://github.com/Yoast/PHPUnit-Polyfills/pull/97
[#99]: https://github.com/Yoast/PHPUnit-Polyfills/pull/99


## [1.0.4] - 2022-11-16

This is a maintenance release.
Expand Down Expand Up @@ -126,6 +156,7 @@ Initial release.


[Unreleased]: https://github.com/Yoast/PHPUnit-Polyfills/compare/main...HEAD
[1.0.5]: https://github.com/Yoast/PHPUnit-Polyfills/compare/1.0.4...1.0.5
[1.0.4]: https://github.com/Yoast/PHPUnit-Polyfills/compare/1.0.3...1.0.4
[1.0.3]: https://github.com/Yoast/PHPUnit-Polyfills/compare/1.0.2...1.0.3
[1.0.2]: https://github.com/Yoast/PHPUnit-Polyfills/compare/1.0.1...1.0.2
Expand Down
2 changes: 1 addition & 1 deletion phpunitpolyfills-autoload.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ final class Autoload {
*
* @var string
*/
const VERSION = '1.0.4';
const VERSION = '1.0.5';

/**
* Loads a class.
Expand Down

0 comments on commit 857c550

Please sign in to comment.