From c80c903bfa7860c71259c9e8e2464054401c597c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexandre=20Mondaini=20Calva=CC=83o?= Date: Sat, 23 May 2026 09:07:57 -0300 Subject: [PATCH] fix: bump build.zig.zon `.version` to 0.9.2 to match the v0.9.2 release tag MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The v0.9.2 tarball still self-identifies as `0.9.1` because the package manifest's `.version` field wasn't updated alongside the release. As a result every Zig dependent that fetches v0.9.2 ends up with a `zspec-0.9.1-…` cached package directory and hash — confusing to discover (the hash prefix and the URL disagree) and ambiguous against the actual pre-fix v0.9.1 tarball. No code change; just align the manifest with the tag. --- build.zig.zon | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.zig.zon b/build.zig.zon index 8e453f2..604a2b9 100644 --- a/build.zig.zon +++ b/build.zig.zon @@ -1,6 +1,6 @@ .{ .name = .zspec, - .version = "0.9.1", + .version = "0.9.2", .fingerprint = 0x940ac7516d8ba28d, .paths = .{ "build.zig",