diff --git a/c-api/compat-5.3.h b/c-api/compat-5.3.h index 6f66dad..ef21eda 100644 --- a/c-api/compat-5.3.h +++ b/c-api/compat-5.3.h @@ -396,11 +396,11 @@ COMPAT53_API void luaL_requiref (lua_State *L, const char *modname, /* other Lua versions */ -#if !defined(LUA_VERSION_NUM) || LUA_VERSION_NUM < 501 || LUA_VERSION_NUM > 504 +#if !defined(LUA_VERSION_NUM) || LUA_VERSION_NUM < 501 || LUA_VERSION_NUM > 505 -# error "unsupported Lua version (i.e. not Lua 5.1, 5.2, 5.3, or 5.4)" +# error "unsupported Lua version (i.e. not Lua 5.1, 5.2, 5.3, 5.4 or 5.5)" -#endif /* other Lua versions except 5.1, 5.2, 5.3, and 5.4 */ +#endif /* other Lua versions except 5.1, 5.2, 5.3, 5.4, and 5.5 */ diff --git a/rockspecs/bit32-5.3.5.1-1.rockspec b/rockspecs/bit32-5.3.5.1-1.rockspec index 371f1ae..2f5832c 100644 --- a/rockspecs/bit32-5.3.5.1-1.rockspec +++ b/rockspecs/bit32-5.3.5.1-1.rockspec @@ -8,13 +8,13 @@ description = { summary = "Lua 5.2 bit manipulation library", detailed = [[ bit32 is the native Lua 5.2 bit manipulation library, in the version - from Lua 5.3; it is compatible with Lua 5.1, 5.2, 5.3 and 5.4. + from Lua 5.3; it is compatible with Lua 5.1, 5.2, 5.3, 5.4 and 5.5. ]], homepage = "http://www.lua.org/manual/5.2/manual.html#6.7", license = "MIT" } dependencies = { - "lua >= 5.1, < 5.5" + "lua >= 5.1, < 5.6" } build = { type = "builtin",