From 6df1021561566fb109516463348d8a780dee3952 Mon Sep 17 00:00:00 2001 From: Olivers Vitins Date: Sat, 4 May 2024 21:56:07 +0300 Subject: [PATCH] chore(release): v1.13.1 --- CHANGELOG.md | 7 +++++++ package.json | 2 +- src/index.ts | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 69bd1d9..aaac9bb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,16 @@ # Changelog Generation of this changelog is based on commits +## v1.13.1 +### Fixes +- [87edf8cfa] - **changelog**: wrong semver sequence generation (#21) +### Miscellaneous +- [47a8b0585] - **commands**: change head error message +- [b6d749bea] - fix version regex to include pre-releases ## v1.13.0 ### Fixes - [7b499d763] - **commands**: commit crash upon missing HEAD (#19) ### Miscellaneous +- [87a7c4dcc] - **release**: v1.13.0 - [6ce6e88d8] - Merge pull request 'Refactor into multiple command files' (#20) from refactor/#18 into main ## v1.13.0-rc.0 ### Miscellaneous diff --git a/package.json b/package.json index 40bb362..c61df5c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@resultium/rcz", - "version": "1.13.0", + "version": "1.13.1", "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 248862c..8655bf3 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"); + .version("1.13.1"); const commandFiles = await readdir(join(__dirname, "commands"));