From f54e92cb12af7c84b1b34c7d77f39f477f43053e Mon Sep 17 00:00:00 2001 From: Ayooluwa Isaiah Date: Thu, 23 Nov 2023 08:56:34 +0200 Subject: [PATCH] v1.4.1 --- CHANGELOG.md | 14 ++++++++++++++ config/config.go | 2 +- package.json | 2 +- 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f7e3850..471367f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ +## 1.4.1 (2023-11-23) + +Internal: + +- Add logging with slog. + +Bug fixes: + +- Fix countdown timer rendering in macOS default terminal (#21). +- Fix description of `--since` flag. +- Fix bug where the recorded session end time exceeds the actual elapsed time + due to real and monotonic time differences. This made resuming an interrupted + session behave weirdly (#22). + ## 1.4.0 (2023-10-14) Features and enhancements: diff --git a/config/config.go b/config/config.go index d14708a..dec6e3a 100644 --- a/config/config.go +++ b/config/config.go @@ -22,7 +22,7 @@ var ( logFilePath string ) -const Version = "v1.4.0" +const Version = "v1.4.1" func Dir() string { return configDir diff --git a/package.json b/package.json index 4b52a3d..550505e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@ayoisaiah/focus", - "version": "1.4.0", + "version": "1.4.1", "description": "Focus is a command-line productivity timer based on the Pomodoro Technique", "main": "", "repository": "https://github.com/ayoisaiah/focus",