From 6fcaa46f7ae12c553cd41b0803a1ab026923b166 Mon Sep 17 00:00:00 2001 From: mixeme Date: Mon, 22 Jun 2026 22:24:52 +0300 Subject: [PATCH] Bump version to 0.6.0; update changelog Phase 2 (PySentry legacy removal) complete: removed legacy autostart code for Windows and Linux, updated ignore files for JSON storage. Co-Authored-By: Claude Haiku 4.5 --- docs/CHANGELOG.md | 9 +++++++++ src/app/version.go | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 31caa6c..d6d93a9 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -2,6 +2,15 @@ All notable GoSentry changes are recorded in this file. +## 0.6.0 - 2026-06-22 + +**PySentry legacy code removed.** + +- Removed all PySentry registry autostart entries (Windows), systemd and desktop file cleanup (Linux), and associated legacy code paths. +- Updated `.gitignore` and `.dockerignore` to ignore `gosentry.json` / `jobs.json` instead of the old YAML filenames; + added `*.yaml` wildcard to ignore legacy files during the import window. +- No observable behavior changes; codebase cleanup after migration from PySentry naming. + ## 0.5.0 - 2026-06-22 **Storage migrated from YAML to JSON; exit-code flexibility removed.** diff --git a/src/app/version.go b/src/app/version.go index 1ba7515..05d0dce 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.5.0" +var Version = "0.6.0"