summaryrefslogtreecommitdiff
path: root/internal/version/version.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2025-07-19 22:17:50 +0300
committerPaul Buetow <paul@buetow.org>2025-07-19 22:17:50 +0300
commit93f723b94b790351477e26c85b026bee147989a7 (patch)
tree27a77e57324c3991e32d5bb5890970c4554dd26f /internal/version/version.go
parent5ca3c39da7854a753d8535465ec42bebfa3fcf8e (diff)
fix: switch branches before deletion in abandoned branch scriptv0.8.2
- Add branch switching logic to prevent "refusing to delete current branch" error - Check if we're on the branch to be deleted and switch to main/master first - Skip deletion if no main/master branch exists to switch to - Bump version to 0.8.2 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
Diffstat (limited to 'internal/version/version.go')
-rw-r--r--internal/version/version.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/version/version.go b/internal/version/version.go
index b31f9ec..a136261 100644
--- a/internal/version/version.go
+++ b/internal/version/version.go
@@ -7,7 +7,7 @@ import (
var (
// Version is the current version of gitsyncer
- Version = "0.8.1"
+ Version = "0.8.2"
// GitCommit is the git commit hash at build time
GitCommit = "unknown"