From 7d3a3a156d0aebce9a255d22808798ec782fa639 Mon Sep 17 00:00:00 2001 From: freref <35976402+freref@users.noreply.github.com> Date: Wed, 26 Feb 2025 19:45:48 +0100 Subject: [PATCH] version: 0.3.0 --- 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 b8b2278..02b3361 100755 --- a/build.zig.zon +++ b/build.zig.zon @@ -1,6 +1,6 @@ .{ .name = "fancy-cat", - .version = "0.1.1", + .version = "0.3.0", .minimum_zig_version = "0.13.0", .dependencies = .{ .vaxis = .{ diff --git a/src/main.zig b/src/main.zig index 4eb20bc..d7e1b43 100644 --- a/src/main.zig +++ b/src/main.zig @@ -1,7 +1,7 @@ const std = @import("std"); const Context = @import("Context.zig").Context; -pub const FANCY_CAT_VERSION = "0.2.0"; +pub const FANCY_CAT_VERSION = "0.3.0"; pub fn main() !void { const args = try std.process.argsAlloc(std.heap.page_allocator);