From 1f78e1e1402304a43c7a7a9c540edfe8df73717d Mon Sep 17 00:00:00 2001 From: zingimmick Date: Mon, 1 Mar 2021 16:34:05 +0800 Subject: [PATCH] Update CHANGELOG.md --- CHANGELOG.md | 13 +++++++++++++ changelog-linker.php | 13 ++++++++++++- 2 files changed, 25 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 44a4c4d..3dd0f01 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +### Changed + +- [#21] Use support package for numberForHumans + +### Removed + +- [#22] Remove redundant docblock annotations + +## [0.1.1] - 2021-02-13 + ### Added - [#17] Add events @@ -62,3 +72,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 [#15]: https://github.com/laravel-interaction/subscribe/pull/15 [0.1.0]: https://github.com/laravel-interaction/subscribe/compare/0.0.2...0.1.0 [0.0.2]: https://github.com/laravel-interaction/subscribe/compare/0.0.1...0.0.2 +[#22]: https://github.com/laravel-interaction/subscribe/pull/22 +[#21]: https://github.com/laravel-interaction/subscribe/pull/21 +[0.1.1]: https://github.com/laravel-interaction/subscribe/compare/0.1.0...0.1.1 diff --git a/changelog-linker.php b/changelog-linker.php index fa6ecba..175c496 100644 --- a/changelog-linker.php +++ b/changelog-linker.php @@ -3,10 +3,21 @@ declare(strict_types=1); use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator; +use Symplify\ChangelogLinker\ValueObject\ChangelogFormat; use Symplify\ChangelogLinker\ValueObject\Option; return static function (ContainerConfigurator $containerConfigurator): void { $parameters = $containerConfigurator->parameters(); - $parameters->set(Option::AUTHORS_TO_IGNORE, ['zingimmick', 'dependabot[bot]', 'renovate[bot]']); + $parameters->set( + Option::AUTHORS_TO_IGNORE, + [ + 'zingimmick', + 'dependabot[bot]', + 'fossabot', + 'renovate[bot]', + ] + ); + + $parameters->set(Option::CHANGELOG_FORMAT, ChangelogFormat::CATEGORIES_ONLY); };