Skip to content

Commit

Permalink
chore(release): 8.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
DCsunset committed Jun 30, 2023
1 parent 82ff8b4 commit 8ca3057
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 4 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.1.0](https://github.com/DCsunset/task.json-cli/compare/v8.0.4...v8.1.0) (2023-06-30)


### Features

* use dynamic imports to speed up startup ([174bc42](https://github.com/DCsunset/task.json-cli/commit/174bc4215884a2ed0da5327c4681aae3e1e7e06f))


### Bug Fixes

* hard code version in app.js to reduce package loading ([82ff8b4](https://github.com/DCsunset/task.json-cli/commit/82ff8b41a323e5ee8fa487acd1110c528b4495e6))

## [8.0.4](https://github.com/DCsunset/task.json-cli/compare/v8.0.3...v8.0.4) (2023-04-14)


Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "task.json-cli",
"version": "8.0.4",
"version": "8.1.0",
"description": "Command line todo management app based on task.json format",
"main": "dist/app.js",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion src/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const program = new Command();
program
.name("tj")
.description("Command line todo management app based on task.json format")
.version("v8.0.4");
.version("v8.1.0");

program
.addCommand(lsCmd)
Expand Down

0 comments on commit 8ca3057

Please sign in to comment.