From 6136bb645b850678f23967e21bd58891cda3047a Mon Sep 17 00:00:00 2001 From: mixeme Date: Tue, 23 Jun 2026 08:20:29 +0300 Subject: [PATCH] Bump version to 0.8.0; update changelog Co-Authored-By: Claude Sonnet 4.6 --- docs/CHANGELOG.md | 7 +++++++ src/app/version.go | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index fbc1a53..63a30c4 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -2,6 +2,13 @@ All notable GoSentry changes are recorded in this file. +## 0.8.0 - 2026-06-23 + +**Desktop notifications for failed jobs; Browse button for command paths.** + +- Failed job runs now raise a desktop notification (title "GoSentry: Job Failed", body shows the job name and failure detail) when the "Show desktop notifications for failed jobs" setting is enabled. Notifications fire for scheduled and manual runs only; internal activity events are not notified. +- Added a Browse button next to the Command field in the job dialog so users can pick an executable from a file picker instead of typing the full path. + ## 0.7.0 - 2026-06-23 **Execution modes and overlap policies for parallel and sequential job dispatch.** diff --git a/src/app/version.go b/src/app/version.go index 43719ce..256e353 100644 --- a/src/app/version.go +++ b/src/app/version.go @@ -3,4 +3,4 @@ package app // Version is the application version shown in the GUI and used by build // scripts in artifact names. It is a var rather than a const so release builds // can override it with Go ldflags when CI tags a build. -var Version = "0.7.0" +var Version = "0.8.0"