Skip to content

Commit

Permalink
Bump version to v0.12
Browse files Browse the repository at this point in the history
  • Loading branch information
pintsized committed Jul 8, 2022
1 parent 3a548a3 commit 4ebd3fe
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion lib/resty/qless.lua
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ end


local _M = {
_VERSION = '0.11',
_VERSION = '0.12',
}

local mt = { __index = _M }
Expand Down
2 changes: 1 addition & 1 deletion lib/resty/qless/job.lua
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ local cjson_decode = cjson.decode


local _M = {
_VERSION = '0.11',
_VERSION = '0.12',
}

local mt = {
Expand Down
2 changes: 1 addition & 1 deletion lib/resty/qless/luascript.lua
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ local io_open = io.open


local _M = {
_VERSION = '0.11',
_VERSION = '0.12',
}

local mt = { __index = _M }
Expand Down
2 changes: 1 addition & 1 deletion lib/resty/qless/queue.lua
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ end


local _M = {
_VERSION = '0.11',
_VERSION = '0.12',
}


Expand Down
2 changes: 1 addition & 1 deletion lib/resty/qless/recurring_job.lua
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ local cjson_decode = cjson.decode


local _M = {
_VERSION = '0.11',
_VERSION = '0.12',
}

local mt = {
Expand Down
2 changes: 1 addition & 1 deletion lib/resty/qless/reserver/ordered.lua
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ local ngx_ERR = ngx.ERR
local ngx_INFO = ngx.INFO

local _M = {
_VERSION = '0.11',
_VERSION = '0.12',
}

local mt = { __index = _M }
Expand Down
2 changes: 1 addition & 1 deletion lib/resty/qless/reserver/round_robin.lua
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ local ngx_ERR = ngx.ERR
local ngx_INFO = ngx.INFO

local _M = {
_VERSION = '0.11',
_VERSION = '0.12',
}

local mt = { __index = _M }
Expand Down
2 changes: 1 addition & 1 deletion lib/resty/qless/reserver/shuffled_round_robin.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ local math_random = math.random
local math_randomseed = math.randomseed

local _M = {
_VERSION = '0.11',
_VERSION = '0.12',
}

local mt = { __index = _M }
Expand Down
2 changes: 1 addition & 1 deletion lib/resty/qless/worker.lua
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ local co_yield = coroutine.yield


local _M = {
_VERSION = '0.11',
_VERSION = '0.12',
}

local mt = { __index = _M }
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package = "lua-resty-qless"
version = "0.11-0"
version = "0.12-0"
source = {
url = "git://github.com/pintsized/lua-resty-qless",
tag = "v0.11"
tag = "v0.12"
}
description = {
summary = "Lua binding to Qless (Queue / Pipeline management) for OpenResty",
Expand Down

0 comments on commit 4ebd3fe

Please sign in to comment.