From d0b5efa8859afb3330ce71ea624ce75b57deda86 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 21 Dec 2024 23:16:28 +0000 Subject: [PATCH] chore(main): release 0.7.0 (#34) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit # [0.7.0](https://github.com/louis-thevenet/vault-tasks/compare/v0.6.1...v0.7.0) (2024-12-21) # Breaking change in config file - `task_state_marker` has been replaced by `task_state_markers.done` - `ToggleStatus` action has been split into `MarkToDo`, and `MarkDone` # Features - add Incomplete and Canceled states ([d98b378](https://github.com/louis-thevenet/vault-tasks/commit/d98b3784bf33149dea5357132787308b4175dfa4)) - add actions to mark tasks Done, ToDo, Incomplete and Canceled ([f07a13b](https://github.com/louis-thevenet/vault-tasks/commit/f07a13b9084f48f8520a1b81575b3f3976396c82)) New actions in config file: `MarkToDo`, `MarkDone`, `MarkCancel` and `MarkIncomplete` - **config:** add config options for task state markers ([ed9334f](https://github.com/louis-thevenet/vault-tasks/commit/ed9334fb2fa5bd498d4c4672b3c18d469fb6a16f)) Configuration example: ``` task_state_markers.todo = ' ' task_state_markers.done = 'x' task_state_markers.incomplete = '/' task_state_markers.canceled = '-' ``` - **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)) Configuration example: ``` pretty_symbols.task_done="✅" pretty_symbols.task_todo="❌" pretty_symbols.task_incomplete="⏳" pretty_symbols.task_canceled="🚫" pretty_symbols.due_date="📅" pretty_symbols.priority="❗" pretty_symbols.today_tag="☀️" ``` --- CHANGELOG.md | 10 ++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) 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 "]