diff --git a/CHANGELOG.md b/CHANGELOG.md index aaac9bb..f67c096 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,15 @@ # Changelog Generation of this changelog is based on commits +## v1.14.0 +### Features +- [f767b846d] - **commands**: add ability to choose files to stage (#22) +### Miscellaneous +- [0cac22a7e] - **changelog**: improve generation time by ~2800 times (#23) ## v1.13.1 ### Fixes - [87edf8cfa] - **changelog**: wrong semver sequence generation (#21) ### Miscellaneous +- [6df102156] - **release**: v1.13.1 - [47a8b0585] - **commands**: change head error message - [b6d749bea] - fix version regex to include pre-releases ## v1.13.0 diff --git a/package.json b/package.json index c61df5c..f2da71e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@resultium/rcz", - "version": "1.13.1", + "version": "1.14.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 8655bf3..cc5a86a 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.13.1"); + .version("1.14.0"); const commandFiles = await readdir(join(__dirname, "commands"));