4 Commits

Author SHA1 Message Date
6e63867ca6 chore(release): v1.12.4 2024-03-05 00:14:01 +02:00
539168195e fix: incorrect commander dependency type 2024-03-05 00:13:52 +02:00
673b02052a chore(release): v1.12.3 2024-03-05 00:11:22 +02:00
5e6900e70d build: downgrade commander to v10
for support of NodeJS v14
2024-03-05 00:11:10 +02:00
5 changed files with 23 additions and 11 deletions

View File

@@ -1,8 +1,17 @@
# Changelog
Generation of this changelog is based on commits
## v1.12.4
### Fixes
- [539168195] - incorrect commander dependency type
## v1.12.3
### Miscellaneous
- [673b02052] - **release**: v1.12.3
- [5e6900e70] - downgrade commander to v10
## v1.12.2
### Fixes
- [8cc93d55d] - use http module instead of fetch (#17)
### Miscellaneous
- [68a0c0e35] - **release**: v1.12.2
## v1.12.1
### Miscellaneous
- [dd4ca1f1c] - **release**: v1.12.1

View File

@@ -1,6 +1,6 @@
# rcz
Resultium commit standardization library
Resultium commit standardization library. Supported by NodeJS v14 and above
## Installation

View File

@@ -1,6 +1,6 @@
{
"name": "@resultium/rcz",
"version": "1.12.2",
"version": "1.12.4",
"license": "GPL-3.0-or-later",
"description": "Resultium commit standardization library, inspired by conventional commits",
"main": "./dist/index.js",
@@ -13,9 +13,12 @@
"scripts": {
"build": "tsc"
},
"engines": {
"node": ">=14"
},
"repository": {
"type": "git",
"url": "https://git.resultium.net/technology/rcz.git"
"url": "https://git.resultium.net/public/rcz.git"
},
"keywords": [
"conventional",
@@ -23,12 +26,12 @@
],
"author": {
"name": "Resultium",
"email": "contact@resultium.io",
"email": "technology@resultium.io",
"url": "https://www.resultium.io"
},
"dependencies": {
"@clack/prompts": "^0.7.0",
"commander": "^11.1.0",
"commander": "10.0.1",
"semver": "^7.5.4",
"simple-git": "^3.21.0"
},

10
pnpm-lock.yaml generated
View File

@@ -9,8 +9,8 @@ dependencies:
specifier: ^0.7.0
version: 0.7.0
commander:
specifier: ^11.1.0
version: 11.1.0
specifier: 10.0.1
version: 10.0.1
semver:
specifier: ^7.5.4
version: 7.5.4
@@ -70,9 +70,9 @@ packages:
resolution: {integrity: sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A==}
dev: true
/commander@11.1.0:
resolution: {integrity: sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ==}
engines: {node: '>=16'}
/commander@10.0.1:
resolution: {integrity: sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==}
engines: {node: '>=14'}
dev: false
/debug@4.3.4:

View File

@@ -157,7 +157,7 @@ const program = new Command();
program
.name("rcz")
.description("Resultium commit standardization command-line interface")
.version("1.12.2");
.version("1.12.4");
program
.command("commit")