prep the release

This commit is contained in:
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 Taskfile.yaml
*.tgz *.tgz
prettier.config.* prettier.config.*
changelog-next/
*.test.js

View File

@ -5,6 +5,8 @@ project:
next_directory: ./changelog-next next_directory: ./changelog-next
releases: releases:
- version: NEXT - version: NEXT
changes: []
- version: 0.2.0
changes: changes:
- type: feat - type: feat
desc: add `git-gather` command desc: add `git-gather` command
@ -16,6 +18,12 @@ releases:
desc: git-gather also filters on descs desc: git-gather also filters on descs
- type: feat - type: feat
desc: add the validate command 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 - version: 0.1.0
changes: changes:
- port the core of the Perl changelord to JavaScript. - 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", "name": "changelord",
"version": "0.1.0", "version": "0.2.0",
"description": "cli-based changelog manager", "description": "cli-based changelog manager",
"type": "module", "type": "module",
"main": "src/changelord.js", "main": "src/changelord.js",