chore(release): v1.11.0

This commit is contained in:
2024-01-27 16:16:20 +02:00
parent 30a7e0b286
commit 444a957724
3 changed files with 7 additions and 2 deletions

View File

@@ -1,8 +1,13 @@
# Changelog # Changelog
Generation of this changelog is based on commits Generation of this changelog is based on commits
## v1.11.0
### Features
- [30a7e0b28] - **commands**: add --sudo option to commit command (#16)
## v1.10.1 ## v1.10.1
### Fixes ### Fixes
- [782894dae] - **commands**: failure to cancel commit creation - [782894dae] - **commands**: failure to cancel commit creation
### Miscellaneous
- [ebfa3859f] - **release**: v1.10.1
## v1.10.0 ## v1.10.0
### Features ### Features
- [d707aaffe] - **config**: allow RCZ configs to be located in a folder (#15) - [d707aaffe] - **config**: allow RCZ configs to be located in a folder (#15)

View File

@@ -1,6 +1,6 @@
{ {
"name": "@resultium/rcz", "name": "@resultium/rcz",
"version": "1.10.1", "version": "1.11.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

@@ -123,7 +123,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.10.1"); .version("1.11.0");
program program
.command("commit") .command("commit")