chore(release): v1.10.0

This commit is contained in:
2023-12-17 18:21:30 +02:00
parent d707aaffe6
commit 399f65dab1
3 changed files with 12 additions and 2 deletions

View File

@@ -1,8 +1,18 @@
# Changelog
Generation of this changelog is based on commits
## v1.10.0
### Features
- [d707aaffe] - **config**: allow RCZ configs to be located in a folder (#15)
- [4de93ef3e] - **commands**: check for updates upon commit creation (#13)
- [83d655931] - **commands**: warn on >250 line commits, improve text (#13)
- [f371102a8] - **commands**: add aliases to main commands
### Miscellaneous
- [28e1caf28] - push to main post release
## v1.9.0
### Features
- [4c60f62e7] - **config**: add post-release event file
### Miscellaneous
- [7963d78e5] - **release**: v1.9.0
## v1.8.0
### Features
- [1e8bfd04d] - **commands**: add option to change unreleased change title

View File

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

View File

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