Skip to content

Commit 9433698

Browse files
zlice devclaude
andcommitted
release: v0.5.1 — sync VERSION strings with build.zig.zon
v0.5.0 shipped with VERSION constants still set to "0.1.0" in main/msg/bar, so `zephwm --version` reported the wrong version. Bump all three to 0.5.1 and the zon version in lockstep. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent dc27f20 commit 9433698

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

build.zig.zon

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.{
22
.name = .zephwm,
3-
.version = "0.5.0",
3+
.version = "0.5.1",
44
.fingerprint = 0x342fbfe9e4dd8c27,
55
.minimum_zig_version = "0.16.0",
66
.paths = .{ "build.zig", "build.zig.zon", "src", "zephwm-msg", "zephwm-bar", "tests", "config" },

src/main.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const linux = std.os.linux;
1515

1616
extern "c" fn setenv(name: [*:0]const u8, value: [*:0]const u8, overwrite: c_int) c_int;
1717

18-
const VERSION = "0.1.0";
18+
const VERSION = "0.5.1";
1919

2020
/// Zig 0.16: std.posix.getenv was removed. Use libc getenv via std.c.
2121
fn getenv(name: [:0]const u8) ?[]const u8 {

zephwm-bar/main.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const c = @import("c");
99

1010
extern "c" fn execvp(file: [*:0]const u8, argv: [*:null]const ?[*:0]const u8) c_int;
1111

12-
const VERSION = "0.1.0";
12+
const VERSION = "0.5.1";
1313

1414
// Colors (raw pixel values — no XftColor needed)
1515
const BG_COLOR: u32 = 0x1a1a2e;

zephwm-msg/main.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
const std = @import("std");
33
const ipc = @import("ipc");
44

5-
const VERSION = "0.1.0";
5+
const VERSION = "0.5.1";
66

77
fn usage() void {
88
std.debug.print(

0 commit comments

Comments
 (0)