releases
Yanick Champoux 2022-07-25 12:21:08 -04:00
parent ba2ba193cc
commit f012489e34
2 changed files with 15 additions and 1 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

@ -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}->@*;