chore(release): v1.9.0

This commit is contained in:
2023-12-16 18:32:53 +02:00
parent 4c60f62e72
commit 67af578d3a
3 changed files with 7 additions and 2 deletions

View File

@@ -1,10 +1,15 @@
# Changelog # Changelog
Generation of this changelog is based on commits Generation of this changelog is based on commits
## v1.9.0
### Features
- [4c60f62e7] - **config**: add post-release event file
## v1.8.0 ## v1.8.0
### Features ### Features
- [1e8bfd04d] - **commands**: add option to change unreleased change title - [1e8bfd04d] - **commands**: add option to change unreleased change title
### Fixes ### Fixes
- [8e460614f] - **commands**: have unreleased section for changelog - [8e460614f] - **commands**: have unreleased section for changelog
### Miscellaneous
- [357036d02] - **release**: v1.8.0
## v1.7.0 ## v1.7.0
### Features ### Features
- [f4a7a0d2b] - **commands**: add release script customizability (#12) - [f4a7a0d2b] - **commands**: add release script customizability (#12)

View File

@@ -1,6 +1,6 @@
{ {
"name": "@resultium/rcz", "name": "@resultium/rcz",
"version": "1.8.0", "version": "1.9.0",
"description": "Resultium commit standardization library, based on conventional commits", "description": "Resultium commit standardization library, based on conventional commits",
"main": "./dist/index.js", "main": "./dist/index.js",
"bin": { "bin": {

View File

@@ -45,7 +45,7 @@ const program = new Command();
program program
.name("rcz") .name("rcz")
.description("Resultium commit standardization command-line interface") .description("Resultium commit standardization command-line interface")
.version("1.8.0"); .version("1.9.0");
program program
.command("commit") .command("commit")