From 817906c7a08907da1acc4a436acd2650d5e7ba72 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Fri, 28 Feb 2025 20:53:37 -0500 Subject: [PATCH] chore: patch version and update license Signed-off-by: Rui Chen --- README.md | 4 ++++ build.zig.zon | 2 +- src/main.zig | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 362d70c..1787076 100644 --- a/README.md +++ b/README.md @@ -108,6 +108,10 @@ zig build run -- - ✅ Page navigation (zoom, etc.) - ✅ Status bar +## License + +spdx-license-identifier: AGPL-3.0-or-later + ## Contributing Contributions are welcome. diff --git a/build.zig.zon b/build.zig.zon index 02b3361..d80730a 100755 --- a/build.zig.zon +++ b/build.zig.zon @@ -1,6 +1,6 @@ .{ .name = "fancy-cat", - .version = "0.3.0", + .version = "0.3.1", .minimum_zig_version = "0.13.0", .dependencies = .{ .vaxis = .{ diff --git a/src/main.zig b/src/main.zig index d7e1b43..2711c3c 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.3.0"; +pub const FANCY_CAT_VERSION = "0.3.1"; pub fn main() !void { const args = try std.process.argsAlloc(std.heap.page_allocator);