From 9c500137a734f13005e67592e3aa439a209f4ff8 Mon Sep 17 00:00:00 2001 From: DCsunset Date: Fri, 15 Sep 2023 12:35:33 -0400 Subject: [PATCH] chore(release): 8.3.2 --- CHANGELOG.md | 12 ++++++++++++ package-lock.json | 4 ++-- package.json | 2 +- src/app.ts | 2 +- 4 files changed, 16 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 79cf583..b6a1f16 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,18 @@ All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines. +## [8.3.2](https://github.com/DCsunset/task.json-cli/compare/v8.3.1...v8.3.2) (2023-09-15) + + +### Bug Fixes + +* bump versions of dependencies to fix openpgp import issue ([f739ae6](https://github.com/DCsunset/task.json-cli/commit/f739ae64a998d6bfaa817c02222bc4212abbb8d4)) + + +### Misc + +* add example usage for interoperability ([64dfb71](https://github.com/DCsunset/task.json-cli/commit/64dfb71e51e21d4fff108d98b02db291e3b2c859)) + ## [8.3.1](https://github.com/DCsunset/task.json-cli/compare/v8.3.0...v8.3.1) (2023-08-27) diff --git a/package-lock.json b/package-lock.json index e1107ef..c5d9215 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "task.json-cli", - "version": "8.3.1", + "version": "8.3.2", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "task.json-cli", - "version": "8.3.1", + "version": "8.3.2", "license": "AGPL-3.0", "dependencies": { "@types/inquirer": "^9.0.3", diff --git a/package.json b/package.json index 487a924..545364c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "task.json-cli", - "version": "8.3.1", + "version": "8.3.2", "description": "Command line todo management app based on task.json format", "main": "dist/app.js", "type": "module", diff --git a/src/app.ts b/src/app.ts index d5009b1..ac43833 100644 --- a/src/app.ts +++ b/src/app.ts @@ -37,7 +37,7 @@ const program = new Command(); program .name("tj") .description("Command line todo management app based on task.json format") - .version("v8.3.1"); + .version("v8.3.2"); program .addCommand(lsCmd)