Skip to content

Commit ccf0056

Browse files
committed
Changelog: use link lists
This helps to: 1. Keep the changelog readable when editing the markdown and 2. Removes the need to duplicate the links to contributors all over the place.
1 parent 415f8b3 commit ccf0056

File tree

1 file changed

+43
-22
lines changed

1 file changed

+43
-22
lines changed

CHANGELOG.md

+43-22
Original file line numberDiff line numberDiff line change
@@ -7,44 +7,65 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
77
## [Unreleased]
88

99
### Internal
10-
- Travis: add build against PHP 8.0 [#12](https://github.com/php-parallel-lint/PHP-Console-Color/pull/12) from [@jrfnl](https://github.com/jrfnl).
11-
- PHPCS: various improvements [#13](https://github.com/php-parallel-lint/PHP-Console-Color/pull/13) from [@jrfnl](https://github.com/jrfnl).
12-
- PHPUnit: improve configuration [#14](https://github.com/php-parallel-lint/PHP-Console-Color/pull/14) from [@jrfnl](https://github.com/jrfnl).
13-
- PHPUnit: use annotations for fixtures / cross-version compat up to PHPUnit 9.x [#16](https://github.com/php-parallel-lint/PHP-Console-Color/pull/16) from [@jrfnl](https://github.com/jrfnl).
14-
- CI: switch to GH Actions [#17](https://github.com/php-parallel-lint/PHP-Console-Color/pull/17) from [@jrfnl](https://github.com/jrfnl).
15-
- GH Actions: set error reporting to E_ALL [#18](https://github.com/php-parallel-lint/PHP-Console-Color/pull/18) from [@jrfnl](https://github.com/jrfnl).
10+
- Travis: add build against PHP 8.0 [#12] from [@jrfnl].
11+
- PHPCS: various improvements [#13] from [@jrfnl].
12+
- PHPUnit: improve configuration [#14] from [@jrfnl].
13+
- PHPUnit: use annotations for fixtures / cross-version compat up to PHPUnit 9.x [#16] from [@jrfnl].
14+
- CI: switch to GH Actions [#17] from [@jrfnl].
15+
- GH Actions: set error reporting to E_ALL [#18] from [@jrfnl].
16+
17+
[#12]: https://github.com/php-parallel-lint/PHP-Console-Color/pull/12
18+
[#13]: https://github.com/php-parallel-lint/PHP-Console-Color/pull/13
19+
[#14]: https://github.com/php-parallel-lint/PHP-Console-Color/pull/14
20+
[#16]: https://github.com/php-parallel-lint/PHP-Console-Color/pull/16
21+
[#17]: https://github.com/php-parallel-lint/PHP-Console-Color/pull/17
22+
[#18]: https://github.com/php-parallel-lint/PHP-Console-Color/pull/18
23+
1624

1725
## [1.0] - 2020-10-31
1826

1927
### Changed
2028

21-
- BC-Break: The top-level namespace for all classes has changed from `JakubOnderka` to `PHP_Parallel_Lint`. [#10](https://github.com/php-parallel-lint/PHP-Console-Color/pull/10) from [@grogy](https://github.com/grogy).
29+
- BC-Break: The top-level namespace for all classes has changed from `JakubOnderka` to `PHP_Parallel_Lint`. [#10] from [@grogy].
2230

2331
### Added
2432

25-
- Added downloading per month badge from [@grogy](https://github.com/grogy).
26-
- Added license badge from [@grogy](https://github.com/grogy).
27-
- Added instruction for installation from [@grogy](https://github.com/grogy).
28-
- Composer: add description [#11](https://github.com/php-parallel-lint/PHP-Console-Color/pull/11) from [@jrfnl](https://github.com/jrfnl).
33+
- Added downloading per month badge from [@grogy].
34+
- Added license badge from [@grogy].
35+
- Added instruction for installation from [@grogy].
36+
- Composer: add description [#11] from [@jrfnl].
2937

3038
### Internal
3139

32-
- Updated PHP Parallel Lint dependency version restraint [#8](https://github.com/php-parallel-lint/PHP-Console-Color/pull/8) from [@jrfnl](https://github.com/jrfnl).
33-
- Travis: changed from "trusty" to "xenial" [#7](https://github.com/php-parallel-lint/PHP-Console-Color/pull/7) from [@jrfnl](https://github.com/jrfnl).
34-
- Update the unit tests setup [#9](https://github.com/php-parallel-lint/PHP-Console-Color/pull/9) from [@jrfnl](https://github.com/jrfnl).
40+
- Updated PHP Parallel Lint dependency version restraint [#8] from [@jrfnl].
41+
- Travis: changed from "trusty" to "xenial" [#7] from [@jrfnl].
42+
- Update the unit tests setup [#9] from [@jrfnl].
43+
44+
[#7]: https://github.com/php-parallel-lint/PHP-Console-Color/pull/7
45+
[#8]: https://github.com/php-parallel-lint/PHP-Console-Color/pull/8
46+
[#9]: https://github.com/php-parallel-lint/PHP-Console-Color/pull/9
47+
[#10]: https://github.com/php-parallel-lint/PHP-Console-Color/pull/10
48+
[#11]: https://github.com/php-parallel-lint/PHP-Console-Color/pull/11
49+
3550

3651
## [0.3] - 2020-05-14
3752

3853
### Added
3954

40-
- Added changelog from [@reedy](https://github.com/reedy).
55+
- Added changelog from [@reedy].
4156

4257
### Internal
4358

44-
- Travis: test against PHP 7.3 from [@samnela](https://github.com/samnela).
45-
- Cleaned readme - new organization from previous package from [@grogy](https://github.com/grogy).
46-
- Composer: updated dependancies to use new php-parallel-lint organisation from [@grogy](https://github.com/grogy).
47-
- Composer: marked package as replacing jakub-onderka/php-console-color from [@jrfnl](https://github.com/jrfnl).
48-
- Added a .gitattributes file from [@reedy](https://github.com/reedy).
49-
- Travis: test against PHP 7.4 and nightly from [@jrfnl](https://github.com/jrfnl).
50-
- Travis: only run PHPCS on PHP 7.4 from [@jrfnl](https://github.com/jrfnl).
59+
- Travis: test against PHP 7.3 from [@samnela].
60+
- Cleaned readme - new organization from previous package from [@grogy].
61+
- Composer: updated dependancies to use new php-parallel-lint organisation from [@grogy].
62+
- Composer: marked package as replacing jakub-onderka/php-console-color from [@jrfnl].
63+
- Added a .gitattributes file from [@reedy].
64+
- Travis: test against PHP 7.4 and nightly from [@jrfnl].
65+
- Travis: only run PHPCS on PHP 7.4 from [@jrfnl].
66+
67+
68+
[@grogy]: https://github.com/grogy
69+
[@jrfnl]: https://github.com/jrfnl
70+
[@reedy]: https://github.com/reedy
71+
[@samnela]: https://github.com/samnela

0 commit comments

Comments
 (0)