From 399f65dab1a154d5ab0f61d464b5ab9d74f173ec Mon Sep 17 00:00:00 2001 From: Olivers Vitins Date: Sun, 17 Dec 2023 18:21:30 +0200 Subject: [PATCH] chore(release): v1.10.0 --- CHANGELOG.md | 10 ++++++++++ package.json | 2 +- src/index.ts | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index aed8f1e..260a79d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/package.json b/package.json index d7ead35..69aba5c 100644 --- a/package.json +++ b/package.json @@ -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": { diff --git a/src/index.ts b/src/index.ts index 213ee7e..52838a4 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.9.0"); + .version("1.10.0"); program .command("commit")