From 444a957724b49b92b7497284868f7145f866ba6a Mon Sep 17 00:00:00 2001 From: Olivers Vitins Date: Sat, 27 Jan 2024 16:16:20 +0200 Subject: [PATCH] chore(release): v1.11.0 --- CHANGELOG.md | 5 +++++ package.json | 2 +- src/index.ts | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 67407b0..07385fb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,13 @@ # Changelog Generation of this changelog is based on commits +## v1.11.0 +### Features +- [30a7e0b28] - **commands**: add --sudo option to commit command (#16) ## v1.10.1 ### Fixes - [782894dae] - **commands**: failure to cancel commit creation +### Miscellaneous +- [ebfa3859f] - **release**: v1.10.1 ## v1.10.0 ### Features - [d707aaffe] - **config**: allow RCZ configs to be located in a folder (#15) diff --git a/package.json b/package.json index 70d7163..6b66293 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@resultium/rcz", - "version": "1.10.1", + "version": "1.11.0", "description": "Resultium commit standardization library, based on conventional commits", "main": "./dist/index.js", "bin": { diff --git a/src/index.ts b/src/index.ts index f31fc6f..b9ba048 100644 --- a/src/index.ts +++ b/src/index.ts @@ -123,7 +123,7 @@ const program = new Command(); program .name("rcz") .description("Resultium commit standardization command-line interface") - .version("1.10.1"); + .version("1.11.0"); program .command("commit")