Compare commits

...

2 Commits

Author SHA1 Message Date
Yanick Champoux f012489e34 fix typo 2022-07-25 12:21:08 -04:00
Yanick Champoux ba2ba193cc updating the changelog 2022-07-25 12:19:32 -04:00
3 changed files with 24 additions and 4 deletions

14
CHANGELOG.md Normal file
View File

@ -0,0 +1,14 @@
# Changelog for [App::Changelord][homepage]
[homepage]: https://git.babyl.ca/yanick/App-Changelord
## v0.0.1, 2022-06-25
* Initial release
### Statistics
* code churn: 27 files changed, 1281 insertions(+)

View File

@ -2,12 +2,14 @@
project:
name: App::Changelord
homepage: https://git.babyl.ca/yanick/App-Changelord
with_stats: 1
releases:
- version: ~
date: ~
- version: v0.0.1
date: 2022-06-25
changes:
- Initial release
- desc: Doing the thing
- desc: 'code churn: 27 files changed, 1281 insertions(+)'
type: stats
change_types:
- keywords:
- feat
@ -17,3 +19,7 @@ change_types:
- fix
level: patch
title: Bug fixes
- keywords:
- stats
level: patch
title: Statistics

View File

@ -49,7 +49,7 @@ sub as_markdown ($self, $with_next = 1) {
$output .= join "\n",
map { $self->render_release( $_, $n++ ) }
grep {
$with_next ? 1 : ( $_->{version} && $_->version ne 'NEXT' )
$with_next ? 1 : ( $_->{version} && $_->{version} ne 'NEXT' )
}
$changelog->{releases}->@*;