Skip to content

Commit

Permalink
Release version 1.3.2
Browse files Browse the repository at this point in the history
This updates the changelog with the latest changes to allow for releasing version 1.3.2.
  • Loading branch information
jrfnl authored and grogy committed Feb 18, 2022
1 parent 8199c49 commit 8fba43e
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 8 deletions.
42 changes: 35 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,30 +6,57 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [Unreleased]

[Unreleased]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/compare/v1.3.2...HEAD

## [1.3.2] - 2022-02-17

### Fixed

- Bug fix: make Phar file run independently of project under scan [#63] from [@jrfnl].
- Bug fix: checkstyle report could contain invalid XML due to insufficient output escaping [#73] from [@gmazzap].
- Fix Phar building [#70] from [@jrfnl].
- GH Actions: testing against PHP 8.2 [#74] from [@grogy]
- Bug fix: make Phar file run independently of project under scan [#63] from [@jrfnl], fixes [#61].
- Bug fix: checkstyle report could contain invalid XML due to insufficient output escaping [#73] from [@gmazzap], fixes [#72].
- Fix Phar building [#70] from [@jrfnl]. This fixes PHP 8.1 compatibility for the Phar file.
- Documentation fix: the `--show-deprecated` option was missing in both the README as well as the CLI `help` [#84] from [@jrfnl], fixes [#81] reported by [@stronk7].

### Changed

- README: updated information about PHAR availability [#77] from [@jrfnl].
- README: updated CLI example [#80] from [@jrfnl].
- README: added documentation on how to exclude files from a scan based on the PHP version used [#80] from [@jrfnl].
- Composer autoload improvement [#88] from [@jrfnl] with thanks to [@mfn].

### Internal

- Welcome [@jrfnl] as a new maintainer [#32]
- Welcome [@jrfnl] as a new maintainer [#32].
- GH Actions: set error reporting to E_ALL [#65], [#76] from [@jrfnl].
- GH Actions: fix failing tests on PHP 5.3-5.5 [#71] from [@jrfnl] and [@villfa]
- GH Actions: fix failing tests on PHP 5.3-5.5 [#71] from [@jrfnl] and [@villfa].
- GH Actions: auto-cancel concurrent builds [#76] from [@jrfnl].
- GH Actions: testing against PHP 8.2 [#74] from [@grogy].
- GH Actions: release testing against PHP 5.3 [#79] from [@jrfnl].
- GH Actions: update used actions [#82] from [@jrfnl].
- Release checklist can now be found in the `.github` folder [#78] from [@jrfnl].

[Unreleased]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/compare/v1.3.0...HEAD
[1.3.2]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/compare/v1.3.1...v1.3.2

[#32]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/issues/32
[#61]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/issues/61
[#63]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/pull/63
[#65]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/pull/65
[#70]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/pull/70
[#71]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/pull/71
[#72]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/issues/72
[#73]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/pull/73
[#74]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/pull/74
[#76]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/pull/76
[#77]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/pull/77
[#78]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/pull/78
[#79]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/pull/79
[#80]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/pull/80
[#81]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/issues/81
[#82]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/pull/82
[#84]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/pull/84
[#88]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/pull/88
[#89]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/pull/89


## [1.3.1] - 2021-08-13

Expand Down Expand Up @@ -130,6 +157,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
[@ondrejmirtes]: https://github.com/ondrejmirtes
[@reedy]: https://github.com/reedy
[@roelofr]: https://github.com/roelofr
[@stronk7]: https://github.com/stronk7
[@szepeviktor]: https://github.com/szepeviktor
[@lukas9393]: https://github.com/lukas9393
[@villfa]: https://github.com/villfa
Expand Down
2 changes: 1 addition & 1 deletion src/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

class Application
{
const VERSION = '1.3.1';
const VERSION = '1.3.2';

// Return codes
const SUCCESS = 0,
Expand Down

0 comments on commit 8fba43e

Please sign in to comment.