diff --git a/CHANGELOG.md b/CHANGELOG.md index 30262fe..69bd1d9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,13 @@ # Changelog Generation of this changelog is based on commits +## v1.13.0 +### Fixes +- [7b499d763] - **commands**: commit crash upon missing HEAD (#19) +### Miscellaneous +- [6ce6e88d8] - Merge pull request 'Refactor into multiple command files' (#20) from refactor/#18 into main ## v1.13.0-rc.0 ### Miscellaneous +- [4b0ce0fd3] - **release**: v1.13.0-rc.0 - [778175a2f] - split commands into files (#18) ## v1.12.4 ### Fixes diff --git a/package.json b/package.json index 7105646..40bb362 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@resultium/rcz", - "version": "1.13.0-rc.0", + "version": "1.13.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 c5a5321..248862c 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.0-rc.0"); + .version("1.13.0"); const commandFiles = await readdir(join(__dirname, "commands"));