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 51a1c6f commit 27ae589
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 1 deletion.
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

### Added

- [#15] Add Events

### Changed

- [#18] Return distinct viewers
- [#17] Use support package for numberForHumans
- [#16] Bump actions/cache from v2 to v2.1.4
- [#12] Bump codecov/codecov-action from v1.2.0 to v1.2.1
- [#11] Bump codecov/codecov-action from v1.1.1 to v1.2.0

### Fixed

- [#14] Fix typo in description after renaming package

## [0.2.0] - 2021-01-04

### Changed

- [#6] Bump codecov/codecov-action from v1.0.15 to v1.1.1

### Fixed
Expand All @@ -23,3 +43,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[#10]: https://github.com/zingimmick/laravel-view/pull/10
[#6]: https://github.com/zingimmick/laravel-view/pull/6
[#2]: https://github.com/zingimmick/laravel-view/pull/2
[#18]: https://github.com/zingimmick/laravel-view/pull/18
[#17]: https://github.com/zingimmick/laravel-view/pull/17
[#16]: https://github.com/zingimmick/laravel-view/pull/16
[#15]: https://github.com/zingimmick/laravel-view/pull/15
[#14]: https://github.com/zingimmick/laravel-view/pull/14
[#12]: https://github.com/zingimmick/laravel-view/pull/12
[#11]: https://github.com/zingimmick/laravel-view/pull/11
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 27ae589

Please sign in to comment.