From b05591a316fd38f33c53c0a378a3a8dbf179ac2a Mon Sep 17 00:00:00 2001 From: Olivers Vitins Date: Sun, 20 Aug 2023 03:16:05 +0300 Subject: [PATCH] chore(release): v1.1.0 --- package.json | 72 ++++++++++++++++++++++++++-------------------------- src/index.ts | 1 + 2 files changed, 37 insertions(+), 36 deletions(-) diff --git a/package.json b/package.json index 6e10d53..74bcb59 100644 --- a/package.json +++ b/package.json @@ -1,37 +1,37 @@ { - "name": "@resultium/rcz", - "version": "1.0.0", - "description": "Resultium commit standardization library, based on conventional commits", - "main": "./dist/index.js", - "bin": { - "rcz": "./dist/index.js" - }, - "files": [ - "dist" - ], - "scripts": { - "build": "tsc" - }, - "repository": { - "type": "git", - "url": "https://git.resultium.net/technology/rcz.git" - }, - "keywords": [ - "conventional", - "commits" - ], - "author": { - "name": "Resultium", - "email": "contact@resultium.io", - "url": "https://www.resultium.io" - }, - "dependencies": { - "@clack/prompts": "^0.7.0", - "commander": "^11.0.0", - "simple-git": "^3.19.1" - }, - "devDependencies": { - "@types/node": "^20.5.1", - "typescript": "^5.1.6" - } -} + "name": "@resultium/rcz", + "version": "1.1.0", + "description": "Resultium commit standardization library, based on conventional commits", + "main": "./dist/index.js", + "bin": { + "rcz": "./dist/index.js" + }, + "files": [ + "dist" + ], + "scripts": { + "build": "tsc" + }, + "repository": { + "type": "git", + "url": "https://git.resultium.net/technology/rcz.git" + }, + "keywords": [ + "conventional", + "commits" + ], + "author": { + "name": "Resultium", + "email": "contact@resultium.io", + "url": "https://www.resultium.io" + }, + "dependencies": { + "@clack/prompts": "^0.7.0", + "commander": "^11.0.0", + "simple-git": "^3.19.1" + }, + "devDependencies": { + "@types/node": "^20.5.1", + "typescript": "^5.1.6" + } +} \ No newline at end of file diff --git a/src/index.ts b/src/index.ts index 6d0244d..6685594 100644 --- a/src/index.ts +++ b/src/index.ts @@ -388,6 +388,7 @@ program ); await simpleGit() + .add(".") .commit(`chore(release): v${version}`) .addTag(`v${version}`); });