From c6695aef2996ce24d186146c9c2ba76a8818bfbd Mon Sep 17 00:00:00 2001 From: "Thomas G. Lopes" Date: Wed, 4 Mar 2026 21:26:18 +0000 Subject: [PATCH] bump version to 0.1.1, add version bump rule to agents.md --- AGENTS.md | 1 + main.go | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/AGENTS.md b/AGENTS.md index 8f414e2..7908522 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -42,3 +42,4 @@ sigil unlink ~/.config/wezterm/wezterm.lua ## Development - When modifying this repo, rebuild and install the binary: `go build -o ~/.local/bin/sigil .` +- Bump the version constant in `main.go` for every change (follow semver: bugfix = patch, feature = minor, breaking = major) diff --git a/main.go b/main.go index 8001f34..7aff4a8 100644 --- a/main.go +++ b/main.go @@ -8,7 +8,7 @@ import ( "strings" ) -const version = "0.1.0" +const version = "0.1.1" func main() { if len(os.Args) < 2 {