Skip to content

Commit 8fba43e

Browse files
jrfnlgrogy
authored andcommitted
Release version 1.3.2
This updates the changelog with the latest changes to allow for releasing version 1.3.2.
1 parent 8199c49 commit 8fba43e

File tree

2 files changed

+36
-8
lines changed

2 files changed

+36
-8
lines changed

CHANGELOG.md

+35-7
Original file line numberDiff line numberDiff line change
@@ -6,30 +6,57 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
66

77
## [Unreleased]
88

9+
[Unreleased]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/compare/v1.3.2...HEAD
10+
11+
## [1.3.2] - 2022-02-17
12+
913
### Fixed
1014

11-
- Bug fix: make Phar file run independently of project under scan [#63] from [@jrfnl].
12-
- Bug fix: checkstyle report could contain invalid XML due to insufficient output escaping [#73] from [@gmazzap].
13-
- Fix Phar building [#70] from [@jrfnl].
14-
- GH Actions: testing against PHP 8.2 [#74] from [@grogy]
15+
- Bug fix: make Phar file run independently of project under scan [#63] from [@jrfnl], fixes [#61].
16+
- Bug fix: checkstyle report could contain invalid XML due to insufficient output escaping [#73] from [@gmazzap], fixes [#72].
17+
- Fix Phar building [#70] from [@jrfnl]. This fixes PHP 8.1 compatibility for the Phar file.
18+
- 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].
19+
20+
### Changed
21+
22+
- README: updated information about PHAR availability [#77] from [@jrfnl].
23+
- README: updated CLI example [#80] from [@jrfnl].
24+
- README: added documentation on how to exclude files from a scan based on the PHP version used [#80] from [@jrfnl].
25+
- Composer autoload improvement [#88] from [@jrfnl] with thanks to [@mfn].
1526

1627
### Internal
1728

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

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

2540
[#32]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/issues/32
41+
[#61]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/issues/61
2642
[#63]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/pull/63
2743
[#65]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/pull/65
2844
[#70]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/pull/70
2945
[#71]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/pull/71
46+
[#72]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/issues/72
3047
[#73]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/pull/73
3148
[#74]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/pull/74
3249
[#76]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/pull/76
50+
[#77]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/pull/77
51+
[#78]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/pull/78
52+
[#79]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/pull/79
53+
[#80]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/pull/80
54+
[#81]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/issues/81
55+
[#82]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/pull/82
56+
[#84]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/pull/84
57+
[#88]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/pull/88
58+
[#89]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/pull/89
59+
3360

3461
## [1.3.1] - 2021-08-13
3562

@@ -130,6 +157,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
130157
[@ondrejmirtes]: https://github.com/ondrejmirtes
131158
[@reedy]: https://github.com/reedy
132159
[@roelofr]: https://github.com/roelofr
160+
[@stronk7]: https://github.com/stronk7
133161
[@szepeviktor]: https://github.com/szepeviktor
134162
[@lukas9393]: https://github.com/lukas9393
135163
[@villfa]: https://github.com/villfa

src/Application.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
class Application
66
{
7-
const VERSION = '1.3.1';
7+
const VERSION = '1.3.2';
88

99
// Return codes
1010
const SUCCESS = 0,

0 commit comments

Comments
 (0)