Skip to content

Commit 1f78e1e

Browse files
committed
Update CHANGELOG.md
1 parent 064ef6c commit 1f78e1e

File tree

2 files changed

+25
-1
lines changed

2 files changed

+25
-1
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88

99
## Unreleased
1010

11+
### Changed
12+
13+
- [#21] Use support package for numberForHumans
14+
15+
### Removed
16+
17+
- [#22] Remove redundant docblock annotations
18+
19+
## [0.1.1] - 2021-02-13
20+
1121
### Added
1222

1323
- [#17] Add events
@@ -62,3 +72,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6272
[#15]: https://github.com/laravel-interaction/subscribe/pull/15
6373
[0.1.0]: https://github.com/laravel-interaction/subscribe/compare/0.0.2...0.1.0
6474
[0.0.2]: https://github.com/laravel-interaction/subscribe/compare/0.0.1...0.0.2
75+
[#22]: https://github.com/laravel-interaction/subscribe/pull/22
76+
[#21]: https://github.com/laravel-interaction/subscribe/pull/21
77+
[0.1.1]: https://github.com/laravel-interaction/subscribe/compare/0.1.0...0.1.1

changelog-linker.php

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,21 @@
33
declare(strict_types=1);
44

55
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
6+
use Symplify\ChangelogLinker\ValueObject\ChangelogFormat;
67
use Symplify\ChangelogLinker\ValueObject\Option;
78

89
return static function (ContainerConfigurator $containerConfigurator): void {
910
$parameters = $containerConfigurator->parameters();
1011

11-
$parameters->set(Option::AUTHORS_TO_IGNORE, ['zingimmick', 'dependabot[bot]', 'renovate[bot]']);
12+
$parameters->set(
13+
Option::AUTHORS_TO_IGNORE,
14+
[
15+
'zingimmick',
16+
'dependabot[bot]',
17+
'fossabot',
18+
'renovate[bot]',
19+
]
20+
);
21+
22+
$parameters->set(Option::CHANGELOG_FORMAT, ChangelogFormat::CATEGORIES_ONLY);
1223
};

0 commit comments

Comments
 (0)