From b6164d991877e545b6372c3da0f14397a63b53e3 Mon Sep 17 00:00:00 2001 From: jrfnl Date: Mon, 6 Dec 2021 20:26:19 +0100 Subject: [PATCH] Release version 1.3.2 This updates the changelog with the latest changes to allow for releasing version 1.3.2. --- CHANGELOG.md | 42 +++++++++++++++++++++++++++++++++++------- src/Application.php | 2 +- 2 files changed, 36 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 08daca8..f9eef98 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 @@ -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 diff --git a/src/Application.php b/src/Application.php index fe36128..b94e3c9 100644 --- a/src/Application.php +++ b/src/Application.php @@ -4,7 +4,7 @@ class Application { - const VERSION = '1.3.1'; + const VERSION = '1.3.2'; // Return codes const SUCCESS = 0,