From 5c0942aebc02db2e488cd2882ae2b600e1d92b4f Mon Sep 17 00:00:00 2001 From: Kyle Carberry Date: Thu, 25 Jun 2026 17:35:49 +0000 Subject: [PATCH] chore: release v0.6.2 Bump the project version to 0.6.2 in build.zig.zon and src/main.zig so the v0.6.2 tag matches (the release workflow verifies this before publishing). Includes #92 (Fixes #91): detect the system light/dark theme inside boo sessions by answering OSC 11 and the color-scheme DSR from the daemon. --- build.zig.zon | 2 +- src/main.zig | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build.zig.zon b/build.zig.zon index 5a76fcf..f585c83 100644 --- a/build.zig.zon +++ b/build.zig.zon @@ -1,6 +1,6 @@ .{ .name = .boo, - .version = "0.6.1", + .version = "0.6.2", .fingerprint = 0x8b7acdfd255f0e34, .minimum_zig_version = "0.15.2", .dependencies = .{ diff --git a/src/main.zig b/src/main.zig index 64fa5e6..989e7c4 100644 --- a/src/main.zig +++ b/src/main.zig @@ -11,7 +11,7 @@ const paths = @import("paths.zig"); const protocol = @import("protocol.zig"); const ui = @import("ui.zig"); -pub const version = "0.6.1"; +pub const version = "0.6.2"; /// Exit codes, documented in `boo help`. const exit_runtime: u8 = 1;