diff --git a/CHANGELOG.md b/CHANGELOG.md index f67c096..3d68b20 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,14 @@ # Changelog Generation of this changelog is based on commits +## v1.15.0 +### Features +- [e8160a6f3] - **commands**: trim body, footer (#24) +- [a57672550] - **commands**: open default editor upon footer/body writing (#24) ## v1.14.0 ### Features - [f767b846d] - **commands**: add ability to choose files to stage (#22) ### Miscellaneous +- [1bce93a24] - **release**: v1.14.0 - [0cac22a7e] - **changelog**: improve generation time by ~2800 times (#23) ## v1.13.1 ### Fixes @@ -121,13 +126,13 @@ Generation of this changelog is based on commits - [2670f79e2] - Merge pull request 'Release v1.3.0' (#5) from develop into main - [3afc2ed07] - Merge branch 'main' into develop - [45458d14e] - **changelog**: generate for v1.3.0 -- [d61c9ecf2] - Merge pull request 'Make commit signing possible' (#3) from develop into main ## v1.3.0 ### Features - [755da3bb5] - **commands**: add ability to write a footer - [9311be80b] - **commands**: add commit message validation command (#4) ### Miscellaneous - [f3c55fac3] - **release**: v1.3.0 +- [d61c9ecf2] - Merge pull request 'Make commit signing possible' (#3) from develop into main - [8816db86f] - **changelog**: generate ## v1.2.0 ### Features diff --git a/package.json b/package.json index f2da71e..026d166 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@resultium/rcz", - "version": "1.14.0", + "version": "1.15.0", "license": "GPL-3.0-or-later", "description": "Resultium commit standardization library, inspired by conventional commits", "main": "./dist/index.js", diff --git a/src/index.ts b/src/index.ts index cc5a86a..4708b85 100644 --- a/src/index.ts +++ b/src/index.ts @@ -29,7 +29,7 @@ import { join } from "path"; program .name("rcz") .description("Resultium commit standardization command-line interface") - .version("1.14.0"); + .version("1.15.0"); const commandFiles = await readdir(join(__dirname, "commands"));