Compare commits
2 Commits
ffe113a10c
...
f012489e34
Author | SHA1 | Date | |
---|---|---|---|
|
f012489e34 | ||
|
ba2ba193cc |
14
CHANGELOG.md
Normal file
14
CHANGELOG.md
Normal 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(+)
|
||||||
|
|
@ -2,12 +2,14 @@
|
|||||||
project:
|
project:
|
||||||
name: App::Changelord
|
name: App::Changelord
|
||||||
homepage: https://git.babyl.ca/yanick/App-Changelord
|
homepage: https://git.babyl.ca/yanick/App-Changelord
|
||||||
|
with_stats: 1
|
||||||
releases:
|
releases:
|
||||||
- version: ~
|
- version: v0.0.1
|
||||||
date: ~
|
date: 2022-06-25
|
||||||
changes:
|
changes:
|
||||||
- Initial release
|
- Initial release
|
||||||
- desc: Doing the thing
|
- desc: 'code churn: 27 files changed, 1281 insertions(+)'
|
||||||
|
type: stats
|
||||||
change_types:
|
change_types:
|
||||||
- keywords:
|
- keywords:
|
||||||
- feat
|
- feat
|
||||||
@ -17,3 +19,7 @@ change_types:
|
|||||||
- fix
|
- fix
|
||||||
level: patch
|
level: patch
|
||||||
title: Bug fixes
|
title: Bug fixes
|
||||||
|
- keywords:
|
||||||
|
- stats
|
||||||
|
level: patch
|
||||||
|
title: Statistics
|
||||||
|
@ -49,7 +49,7 @@ sub as_markdown ($self, $with_next = 1) {
|
|||||||
$output .= join "\n",
|
$output .= join "\n",
|
||||||
map { $self->render_release( $_, $n++ ) }
|
map { $self->render_release( $_, $n++ ) }
|
||||||
grep {
|
grep {
|
||||||
$with_next ? 1 : ( $_->{version} && $_->version ne 'NEXT' )
|
$with_next ? 1 : ( $_->{version} && $_->{version} ne 'NEXT' )
|
||||||
}
|
}
|
||||||
$changelog->{releases}->@*;
|
$changelog->{releases}->@*;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user