From 68a0c0e35bd7415748e6b63126a50fc45d70aaa4 Mon Sep 17 00:00:00 2001 From: Olivers Vitins Date: Mon, 4 Mar 2024 22:56:50 +0200 Subject: [PATCH] chore(release): v1.12.2 --- CHANGELOG.md | 4 ++++ package.json | 2 +- src/index.ts | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1856fb5..0504210 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,11 @@ # Changelog Generation of this changelog is based on commits +## v1.12.2 +### Fixes +- [8cc93d55d] - use http module instead of fetch (#17) ## v1.12.1 ### Miscellaneous +- [dd4ca1f1c] - **release**: v1.12.1 - [7264816e0] - change installation instructions ## v1.12.0 ### Miscellaneous diff --git a/package.json b/package.json index 9432a00..1cbe63f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@resultium/rcz", - "version": "1.12.1", + "version": "1.12.2", "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 5a2c1a4..9be832a 100644 --- a/src/index.ts +++ b/src/index.ts @@ -157,7 +157,7 @@ const program = new Command(); program .name("rcz") .description("Resultium commit standardization command-line interface") - .version("1.12.1"); + .version("1.12.2"); program .command("commit")