From 6862f6e35bb8728dda11f6c10f9d9caa0cd0a7f3 Mon Sep 17 00:00:00 2001 From: Steve Yegge Date: Fri, 26 Dec 2025 13:04:27 -0800 Subject: [PATCH] chore(nix): Update version to 0.37.0 in default.nix (GH#749) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Version was stuck at 0.30.7. The vendorHash may need updating too - if build fails with hash mismatch, use the "got:" value from the error. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/default.nix b/default.nix index 05c2acd3..10841529 100644 --- a/default.nix +++ b/default.nix @@ -1,14 +1,14 @@ { pkgs, self }: pkgs.buildGoModule { pname = "beads"; - version = "0.30.7"; + version = "0.37.0"; src = self; # Point to the main Go package subPackages = [ "cmd/bd" ]; doCheck = false; - # Go module dependencies hash (computed via nix build) + # Go module dependencies hash - if build fails with hash mismatch, update with the "got:" value vendorHash = "sha256-Brzb6HZHYtF8LTkP3uQ21GG72c5ekzSkQ2EdrqkdeO0="; # Git is required for tests