diff --git a/README.md b/README.md index 15e3327..fd60e92 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ zvm --version # Display zvm version ### Compatibility Notes Zig is in active development and the APIs can change frequently, making it challenging to support every dev build. This project currently aims to be compatible with stable, non-development builds to provide a consistent experience for the users. -***Supported Version***: As of now, zvm is tested and supported on Zig version ***0.11.0***. +***Supported Version***: As of now, zvm is tested and supported on Zig version ***0.12.0***. ### Contributing Contributions, issues, and feature requests are welcome! diff --git a/build.zig b/build.zig index eae09c5..70b156d 100644 --- a/build.zig +++ b/build.zig @@ -8,7 +8,7 @@ const CrossTargetInfo = struct { // Semantic version of your application const version = std.SemanticVersion{ .major = 0, .minor = 3, .patch = 1 }; -const min_zig_string = "0.12.0-dev.3522+b88ae8dbd"; +const min_zig_string = "0.12.0"; const Build = blk: { const current_zig = builtin.zig_version;