diff --git a/CHANGELOG.md b/CHANGELOG.md index 8d9edee..7df7c83 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,20 @@ # Changelog -## [Unreleased] +## v1.2.0 - 2025-02-26 ### Features -- (notification) Blink clock when it reaches its `done` mode. (optional) [#65](https://github.com/sectore/timr-tui/pull/65) -- (notification) Native desktop notification (optional, experimental) [#49](https://github.com/sectore/timr-tui/pull/59) +- (notification) Clock animation (blink) by reaching `done` mode (optional) [#65](https://github.com/sectore/timr-tui/pull/65) +- (notification) Native desktop notification (optional, experimental) [#59](https://github.com/sectore/timr-tui/pull/59) - (notification) Sound notification (optional, experimental, available in local build only) [#62](https://github.com/sectore/timr-tui/pull/62) +- (logging) Add `--log` arg to enable logs [e094d7d](https://github.com/sectore/timr-tui/commit/e094d7d81b99f58f0d3bc50124859a4e1f6dbe4f) + +### Misc. + +- (refactor) Extend event handling for using a `mpsc` channel to send `AppEvent`'s from anywhere. [#61](https://github.com/sectore/timr-tui/pull/61) +- (extension) Use `set_panic_hook` for better error handling [#67](https://github.com/sectore/timr-tui/pull/67) +- (deps) Use latest `Rust 1.85` and `Rust 2024 Edition`. Refactor `flake` to consider `rust-toolchain.toml` etc. [#68](https://github.com/sectore/timr-tui/pull/68) + ## v1.1.0 - 2025-01-22 diff --git a/Cargo.lock b/Cargo.lock index 709f540..72b1061 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2055,7 +2055,7 @@ dependencies = [ [[package]] name = "timr-tui" -version = "1.1.0" +version = "1.2.0" dependencies = [ "clap", "color-eyre", diff --git a/Cargo.toml b/Cargo.toml index 6c790fc..8470954 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "timr-tui" -version = "1.1.0" +version = "1.2.0" description = "TUI to organize your time: Pomodoro, Countdown, Timer." edition = "2024" # Reminder: Always keep `channel` in `rust-toolchain.toml` in sync with `rust-version`.