diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 2dcc5bf..6b2090b 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -2,6 +2,12 @@ All notable GoSentry changes are recorded in this file. +## 0.10.1 - 2026-06-24 + +**Refactoring:** +- Unified icon asset naming from mixed scheme (big/16x16) to consistent + size-based names (large/small) for clarity and maintainability. + ## 0.10.0 - 2026-06-24 **Compact activity rows; per-job execution-time statistics seeded from log files.** diff --git a/src/app/version.go b/src/app/version.go index ff31b00..7030beb 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.10.0" +var Version = "0.10.1"