diff --git a/CHANGELOG.md b/CHANGELOG.md index 613e2b9..5147434 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Changelog +## [0.5.0](https://github.com/louis-thevenet/vault-tasks/compare/v0.4.0...v0.5.0) (2024-11-24) + + +### Features + +* add config option for time management methods ([70fbb59](https://github.com/louis-thevenet/vault-tasks/commit/70fbb594595bf9ece7fcd73b774b86c818155799)) +* add Time Management tab ([#27](https://github.com/louis-thevenet/vault-tasks/issues/27)) ([8d5c12c](https://github.com/louis-thevenet/vault-tasks/commit/8d5c12ce8581f0ab9468a17bcf7ff7ea5801a987)) +* **core:** include relative date in stdout mode ([7fdff9c](https://github.com/louis-thevenet/vault-tasks/commit/7fdff9c18087e8df4cbae5b1425ce451c423944b)) + + +### Bug Fixes + +* add a cli argument to show fps and tps counters ([3991042](https://github.com/louis-thevenet/vault-tasks/commit/3991042244f2e8bf7c8f46b2d70860ddfde38060)) +* home component not registering when focusing time management tab ([6909a1c](https://github.com/louis-thevenet/vault-tasks/commit/6909a1c1b9769d833d4f9b01b960cc56fce70a28)) +* time management settings wrong line selected on startup ([cf90476](https://github.com/louis-thevenet/vault-tasks/commit/cf90476853b39490f111fbc2152b0d11b7d74b2d)) + ## [0.4.0](https://github.com/louis-thevenet/vault-tasks/compare/v0.3.0...v0.4.0) (2024-11-09) diff --git a/Cargo.lock b/Cargo.lock index 11a64a7..455e45e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3475,7 +3475,7 @@ checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d" [[package]] name = "vault-tasks" -version = "0.4.0" +version = "0.5.0" dependencies = [ "anyhow", "better-panic", diff --git a/Cargo.toml b/Cargo.toml index 3a8c854..83447f1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -70,7 +70,7 @@ description = "TUI Markdown Task Manager" build = "build.rs" categories = ["command-line-utilities", "visualization"] keywords = ["markdown", "task-manager", "productivity", "tui", "obsidian"] -version = "0.4.0" +version = "0.5.0" edition = "2021" repository = "https://github.com/louis-thevenet/vault-tasks" authors = ["Louis Thevenet "]