From 4ec52545e5d880a2ab1da5f2a82f1a4f1da38228 Mon Sep 17 00:00:00 2001 From: Jens Krause <47693+sectore@users.noreply.github.com> Date: Thu, 16 Oct 2025 14:44:19 +0200 Subject: [PATCH] Prepare v1.6.0 (#134) --- CHANGELOG.md | 15 ++++++++------- Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 10 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dc7815a..1523e35 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,19 +1,22 @@ # Changelog -## [unreleased] +## v1.6.0 - 2025-10-16 ### Features - (event) New `event` screen to count custom date times in the future or past. [#117](https://github.com/sectore/timr-tui/pull/117), [#120](https://github.com/sectore/timr-tui/pull/120), [#122](https://github.com/sectore/timr-tui/pull/122), [#123](https://github.com/sectore/timr-tui/pull/123), [#124](https://github.com/sectore/timr-tui/pull/124), [#125](https://github.com/sectore/timr-tui/pull/125), [#129](https://github.com/sectore/timr-tui/pull/129), [#130](https://github.com/sectore/timr-tui/pull/130), [#131](https://github.com/sectore/timr-tui/pull/131), [#132](https://github.com/sectore/timr-tui/pull/132) -- (screens) switch by `←` or `→` keys [#127](https://github.com/sectore/timr-tui/pull/127) -- (duration) inrease `MAX_DURATION` to `9999y 364d 23:59:59.9` [#128](https://github.com/sectore/timr-tui/pull/128) +- (keybindings) Switch screens by `←` or `→` keys [#127](https://github.com/sectore/timr-tui/pull/127) +- (duration) Inrease `MAX_DURATION` to `9999y 364d 23:59:59.9` [#128](https://github.com/sectore/timr-tui/pull/128) ### Breaking change -- (pomodoro)! new keybindings `ctrl+←` or `ctrl+→` to switch `work`/`pause` [#127](https://github.com/sectore/timr-tui/pull/127) -- (keybindings)! change keys for `screens` [#126](https://github.com/sectore/timr-tui/pull/126) +- (pomodoro)! New keybindings `ctrl+←` or `ctrl+→` to switch `work`/`pause` [#127](https://github.com/sectore/timr-tui/pull/127) +- (keybindings)! Change keys for `screens` [#126](https://github.com/sectore/timr-tui/pull/126) - (cli)! Remove `--countdown-target` argument [#121](https://github.com/sectore/timr-tui/pull/121) +### Misc. + +- Add `AGENTS.md` [#133](https://github.com/sectore/timr-tui/pull/133) ## v1.5.0 - 2025-10-03 @@ -25,13 +28,11 @@ - (edit) Change any value by `10x` up or down [#110](https://github.com/sectore/timr-tui/pull/110) - (timer/countdown): Support `days` and `years` up to `999y 364d 23:59:59` [#96](https://github.com/sectore/timr-tui/pull/96) - ### Fix - (edit) Auto jump to next possible value while decreasing, but ignoring `zero` values [#109](https://github.com/sectore/timr-tui/pull/109) - (format) Improve format handling + fix `days` (no zero-padding) [#107](https://github.com/sectore/timr-tui/pull/107) - ### Misc. - (deps) Upgrade dependencies [#113](https://github.com/sectore/timr-tui/pull/113) diff --git a/Cargo.lock b/Cargo.lock index 14162c6..32e1105 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2090,7 +2090,7 @@ dependencies = [ [[package]] name = "timr-tui" -version = "1.5.0" +version = "1.6.0" dependencies = [ "clap", "color-eyre", diff --git a/Cargo.toml b/Cargo.toml index d0f0bc8..5a702f0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "timr-tui" -version = "1.5.0" +version = "1.6.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`.