From bf1c28ce97fe6b50d392dbfdde52922d65c5f71c Mon Sep 17 00:00:00 2001 From: jiahao Date: Thu, 8 Aug 2024 19:00:09 +0800 Subject: [PATCH] bumped lua-resty-core to 0.1.29. --- lib/resty/core/base.lua | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/lib/resty/core/base.lua b/lib/resty/core/base.lua index 3d142f564..63c830492 100644 --- a/lib/resty/core/base.lua +++ b/lib/resty/core/base.lua @@ -19,22 +19,22 @@ local FREE_LIST_REF = 0 if subsystem == 'http' then if not ngx.config or not ngx.config.ngx_lua_version - or ngx.config.ngx_lua_version ~= 10026 + or ngx.config.ngx_lua_version ~= 10027 then - error("ngx_http_lua_module 0.10.26 required") + error("ngx_http_lua_module 0.10.27 required") end elseif subsystem == 'stream' then if not ngx.config or not ngx.config.ngx_lua_version - or ngx.config.ngx_lua_version ~= 14 + or ngx.config.ngx_lua_version ~= 15 then - error("ngx_stream_lua_module 0.0.14 required") + error("ngx_stream_lua_module 0.0.15 required") end else - error("ngx_http_lua_module 0.10.26 or " - .. "ngx_stream_lua_module 0.0.14 required") + error("ngx_http_lua_module 0.10.27 or " + .. "ngx_stream_lua_module 0.0.15 required") end @@ -141,7 +141,7 @@ local c_buf_type = ffi.typeof("char[?]") local _M = new_tab(0, 18) -_M.version = "0.1.28" +_M.version = "0.1.29" _M.new_tab = new_tab _M.clear_tab = clear_tab