From 888e7bd65893a41188e75299a461c2419b6b14cd Mon Sep 17 00:00:00 2001 From: Mike Parker Date: Mon, 5 Jan 2015 16:44:00 +0900 Subject: [PATCH] LUA_VERSION_RELEASE should be 0, since that's the minimum version the binding is directly compatibile with. --- source/derelict/lua/types.d | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/derelict/lua/types.d b/source/derelict/lua/types.d index ebd844f..66a6591 100644 --- a/source/derelict/lua/types.d +++ b/source/derelict/lua/types.d @@ -28,10 +28,11 @@ DEALINGS IN THE SOFTWARE. module derelict.lua.types; //lua.h +// The minimum version of Lua with which this binding is compatible. enum LUA_VERSION_MAJOR ="5"; enum LUA_VERSION_MINOR ="2"; enum LUA_VERSION_NUM = 502; -enum LUA_VERSION_RELEASE = "1"; +enum LUA_VERSION_RELEASE = "0"; enum LUA_VERSION = "Lua " ~ LUA_VERSION_MAJOR ~ "." ~ LUA_VERSION_MINOR; enum LUA_RELEASE = LUA_VERSION ~ "." ~ LUA_VERSION_RELEASE;