Compare commits

..

No commits in common. "f012489e340dcebd804cf0f3df3348147df73f04" and "ffe113a10c8b184a8b7ea90fbf6b4bc2011cc781" have entirely different histories.

3 changed files with 4 additions and 24 deletions

View File

@ -1,14 +0,0 @@
# 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,14 +2,12 @@
project:
name: App::Changelord
homepage: https://git.babyl.ca/yanick/App-Changelord
with_stats: 1
releases:
- version: v0.0.1
date: 2022-06-25
- version: ~
date: ~
changes:
- Initial release
- desc: 'code churn: 27 files changed, 1281 insertions(+)'
type: stats
- desc: Doing the thing
change_types:
- keywords:
- feat
@ -19,7 +17,3 @@ 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}->@*;