diff --git a/CHANGELOG.md b/CHANGELOG.md index 8b9c738..6261311 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## [0.7.0](https://github.com/louis-thevenet/vault-tasks/compare/v0.6.1...v0.7.0) (2024-12-21) + + +### Features + +* add actions to mark tasks Done, ToDo, Incomplete and Canceled ([f07a13b](https://github.com/louis-thevenet/vault-tasks/commit/f07a13b9084f48f8520a1b81575b3f3976396c82)) +* add Incomplete and Canceled states ([d98b378](https://github.com/louis-thevenet/vault-tasks/commit/d98b3784bf33149dea5357132787308b4175dfa4)) +* **config:** add config options for task state markers ([ed9334f](https://github.com/louis-thevenet/vault-tasks/commit/ed9334fb2fa5bd498d4c4672b3c18d469fb6a16f)) +* **config:** add config options for tui symbols (e.g. use ASCII sequences instead of emojis) ([734ae1a](https://github.com/louis-thevenet/vault-tasks/commit/734ae1a1298a07ce8f222ce4b26cda9ef1f9bbb2)) + ## [0.6.1](https://github.com/louis-thevenet/vault-tasks/compare/v0.6.0...v0.6.1) (2024-12-08) diff --git a/Cargo.lock b/Cargo.lock index db9e972..6244dd4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3499,7 +3499,7 @@ checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d" [[package]] name = "vault-tasks" -version = "0.6.1" +version = "0.7.0" dependencies = [ "anyhow", "better-panic", diff --git a/Cargo.toml b/Cargo.toml index f1546a8..a29b984 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -56,7 +56,7 @@ description = "TUI Markdown Task Manager" build = "build.rs" categories = ["command-line-utilities", "visualization"] keywords = ["markdown", "task-manager", "productivity", "tui", "obsidian"] -version = "0.6.1" +version = "0.7.0" edition = "2021" repository = "https://github.com/louis-thevenet/vault-tasks" authors = ["Louis Thevenet "]