diff --git a/build.zig.zon b/build.zig.zon index d82ee11..e05575a 100644 --- a/build.zig.zon +++ b/build.zig.zon @@ -2,7 +2,7 @@ .name = "ZDSM", // This is a [Semantic Version](https://semver.org/). // In a future version of Zig it will be used for package deduplication. - .version = "0.0.0", + .version = "0.1.0", // This field is optional. // This is currently advisory only; Zig does not yet do anything diff --git a/src/main.zig b/src/main.zig index 0b83bd5..d362851 100644 --- a/src/main.zig +++ b/src/main.zig @@ -25,7 +25,7 @@ var alloc = gpa.allocator(); var ctx: *const Context = undefined; // TODO: Parse build.zig.zon at compile time to get version -const SERVER_VERSION = "v0.0.0"; +const SERVER_VERSION = "v0.1.0"; const SoftwareInfo = struct { version: str = SERVER_VERSION };