chore(release): v1.14.0

This commit is contained in:
2024-05-04 23:56:02 +03:00
parent f767b846d8
commit 1bce93a24e
3 changed files with 8 additions and 2 deletions

View File

@@ -1,9 +1,15 @@
# Changelog # Changelog
Generation of this changelog is based on commits 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 ## v1.13.1
### Fixes ### Fixes
- [87edf8cfa] - **changelog**: wrong semver sequence generation (#21) - [87edf8cfa] - **changelog**: wrong semver sequence generation (#21)
### Miscellaneous ### Miscellaneous
- [6df102156] - **release**: v1.13.1
- [47a8b0585] - **commands**: change head error message - [47a8b0585] - **commands**: change head error message
- [b6d749bea] - fix version regex to include pre-releases - [b6d749bea] - fix version regex to include pre-releases
## v1.13.0 ## v1.13.0

View File

@@ -1,6 +1,6 @@
{ {
"name": "@resultium/rcz", "name": "@resultium/rcz",
"version": "1.13.1", "version": "1.14.0",
"license": "GPL-3.0-or-later", "license": "GPL-3.0-or-later",
"description": "Resultium commit standardization library, inspired by conventional commits", "description": "Resultium commit standardization library, inspired by conventional commits",
"main": "./dist/index.js", "main": "./dist/index.js",

View File

@@ -29,7 +29,7 @@ import { join } from "path";
program program
.name("rcz") .name("rcz")
.description("Resultium commit standardization command-line interface") .description("Resultium commit standardization command-line interface")
.version("1.13.1"); .version("1.14.0");
const commandFiles = await readdir(join(__dirname, "commands")); const commandFiles = await readdir(join(__dirname, "commands"));