Skip to content

Commit e8a4af5

Browse files
bumped version to 0.1.34.
1 parent a103a6f commit e8a4af5

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

lib/resty/core/base.lua

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,24 +19,24 @@ local FREE_LIST_REF = 0
1919
if subsystem == 'http' then
2020
if not ngx.config
2121
or not ngx.config.ngx_lua_version
22-
or ngx.config.ngx_lua_version ~= 10030
22+
or ngx.config.ngx_lua_version ~= 10031
2323
then
2424
local ver = ngx.config and tostring(ngx.config.ngx_lua_version) or 'nil'
25-
error("ngx_http_lua_module 0.10.30 required but got " .. ver)
25+
error("ngx_http_lua_module 0.10.31 required but got " .. ver)
2626
end
2727

2828
elseif subsystem == 'stream' then
2929
if not ngx.config
3030
or not ngx.config.ngx_lua_version
31-
or ngx.config.ngx_lua_version ~= 18
31+
or ngx.config.ngx_lua_version ~= 19
3232
then
3333
local ver = ngx.config and tostring(ngx.config.ngx_lua_version) or 'nil'
34-
error("ngx_stream_lua_module 0.0.18 required but got " .. ver)
34+
error("ngx_stream_lua_module 0.0.19 required but got " .. ver)
3535
end
3636

3737
else
38-
error("ngx_http_lua_module 0.10.30 or "
39-
.. "ngx_stream_lua_module 0.0.18 required")
38+
error("ngx_http_lua_module 0.10.31 or "
39+
.. "ngx_stream_lua_module 0.0.19 required")
4040
end
4141

4242

@@ -143,7 +143,7 @@ local c_buf_type = ffi.typeof("char[?]")
143143
local _M = new_tab(0, 18)
144144

145145

146-
_M.version = "0.1.33"
146+
_M.version = "0.1.34"
147147
_M.new_tab = new_tab
148148
_M.clear_tab = clear_tab
149149

0 commit comments

Comments
 (0)