diff --git a/CHANGELOG.md b/CHANGELOG.md index 57929d0..178bd56 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## v1.1.0 - 2025-01-22 + +### Features + +- (countdown) Edit countdown by local time [#49](https://github.com/sectore/timr-tui/pull/49) + +### Fixes + +- (ci) Build statically linked binaries for Linux [#55](https://github.com/sectore/timr-tui/pull/55) +- (ci) Remove magic nix cache action (#57) [#56](https://github.com/sectore/timr-tui/issues/56) + +### Misc. + +- (deps) Latest Rust 1.84, update deps [#48](https://github.com/sectore/timr-tui/pull/48) + ## v1.0.0 - 2025-01-10 Happy `v1.0.0` 🎉 diff --git a/Cargo.lock b/Cargo.lock index 51d56dc..2a996c5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1191,7 +1191,7 @@ dependencies = [ [[package]] name = "timr-tui" -version = "1.1.0-alpha" +version = "1.1.0" dependencies = [ "clap", "color-eyre", diff --git a/Cargo.toml b/Cargo.toml index b7480f6..5eb0ffe 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "timr-tui" -version = "1.1.0-alpha" +version = "1.1.0" description = "TUI to organize your time: Pomodoro, Countdown, Timer." edition = "2021" rust-version = "1.84.0"