prep the release

main
Yanick Champoux 2023-05-18 16:09:50 -04:00
parent 04e9e5f71a
commit bc66ea09a2
4 changed files with 11 additions and 3 deletions

View File

@ -2,3 +2,5 @@ _templates
Taskfile.yaml
*.tgz
prettier.config.*
changelog-next/
*.test.js

View File

@ -5,6 +5,8 @@ project:
next_directory: ./changelog-next
releases:
- version: NEXT
changes: []
- version: 0.2.0
changes:
- type: feat
desc: add `git-gather` command
@ -16,6 +18,12 @@ releases:
desc: git-gather also filters on descs
- type: feat
desc: add the validate command
- desc: support changelog-next directory
type: feat
- type: stats
desc: |
code churn: 21 files changed, 563 insertions(+), 153 deletions(-)
date: 2023-05-18
- version: 0.1.0
changes:
- port the core of the Perl changelord to JavaScript.

View File

@ -1,2 +0,0 @@
- desc: support changelog-next directory
type: feat

View File

@ -1,6 +1,6 @@
{
"name": "changelord",
"version": "0.1.0",
"version": "0.2.0",
"description": "cli-based changelog manager",
"type": "module",
"main": "src/changelord.js",