From 5a5a4135cbb8991f27c01bce341fd93134dbecd1 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Fri, 16 May 2025 15:55:52 -0700 Subject: [PATCH] add minimum_zig_version field --- README.md | 3 --- build.zig.zon | 4 ++-- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 5e9442b..28f59ba 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,6 @@ # Lua ## 5.4.7 -## Warning -due to a bug in the 0.13.0 release of the zig compiler you will need the development version of zig in order to build the lua54.dll on windows. - ## Build Instructions To build all targets run ```sh diff --git a/build.zig.zon b/build.zig.zon index 7a153bd..2b6560b 100644 --- a/build.zig.zon +++ b/build.zig.zon @@ -1,10 +1,10 @@ .{ .name = .lua, - .version = "5.4.7", - .fingerprint = 0xd671372bcadcaace, + .minimum_zig_version = "0.14.0", + .dependencies = .{ .lua = .{ .url = "https://www.lua.org/ftp/lua-5.4.7.tar.gz",