From 540d8052265776451bb9f0ab4dee4ec860563cbe Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Tue, 20 Dec 2022 13:24:43 -0300 Subject: Towards Lua 5.5 --- lua.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'lua.h') diff --git a/lua.h b/lua.h index feb3dbc5..cb32ec22 100644 --- a/lua.h +++ b/lua.h @@ -17,11 +17,11 @@ #define LUA_VERSION_MAJOR "5" -#define LUA_VERSION_MINOR "4" -#define LUA_VERSION_RELEASE "5" +#define LUA_VERSION_MINOR "5" +#define LUA_VERSION_RELEASE "0" -#define LUA_VERSION_NUM 504 -#define LUA_VERSION_RELEASE_NUM (LUA_VERSION_NUM * 100 + 5) +#define LUA_VERSION_NUM 505 +#define LUA_VERSION_RELEASE_NUM (LUA_VERSION_NUM * 100 + 0) #define LUA_VERSION "Lua " LUA_VERSION_MAJOR "." LUA_VERSION_MINOR #define LUA_RELEASE LUA_VERSION "." LUA_VERSION_RELEASE -- cgit v1.2.3-55-g6feb