From 63d7bc6756a57f101b4570aac07bcd1c639ddb4e Mon Sep 17 00:00:00 2001 From: Bryan Johnson Date: Tue, 26 May 2026 09:46:58 -0700 Subject: [PATCH] bump LARRY_VERSION constant to 0.3.0 to match VERSION file The hardcoded constant in larry.sh was stale at 0.1.0. Cosmetic-only fix that makes `larry --version` agree with the VERSION file already at 0.3.0. Co-Authored-By: Claude Opus 4.7 --- larry.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/larry.sh b/larry.sh index 7423d6b..f175288 100755 --- a/larry.sh +++ b/larry.sh @@ -32,7 +32,7 @@ set -o pipefail # ───────────────────────────────────────────────────────────────────────────── # Config # ───────────────────────────────────────────────────────────────────────────── -LARRY_VERSION="0.1.0" +LARRY_VERSION="0.3.0" LARRY_HOME="${LARRY_HOME:-$HOME/.larry}" LARRY_UPDATE_URL="${LARRY_UPDATE_URL:-https://raw.githubusercontent.com/bojj27/cloverleaf-larry/main/larry.sh}" LARRY_AGENTS_URL="${LARRY_AGENTS_URL:-https://raw.githubusercontent.com/bojj27/cloverleaf-larry/main/agents}"