Skip to content

Commit

Permalink
Update CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
zingimmick committed Mar 1, 2021
1 parent 064ef6c commit 1f78e1e
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
13 changes: 12 additions & 1 deletion changelog-linker.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);
};

0 comments on commit 1f78e1e

Please sign in to comment.