Skip to content

Commit d3f0242

Browse files
committed
Merge branch 'release/0.11'
2 parents b3cf917 + a334a5c commit d3f0242

10 files changed

Lines changed: 12 additions & 12 deletions

File tree

lib/resty/qless.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ end
250250

251251

252252
local _M = {
253-
_VERSION = '0.10',
253+
_VERSION = '0.11',
254254
}
255255

256256
local mt = { __index = _M }

lib/resty/qless/job.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ local cjson_decode = cjson.decode
1010

1111

1212
local _M = {
13-
_VERSION = '0.10',
13+
_VERSION = '0.11',
1414
}
1515

1616
local mt = {

lib/resty/qless/luascript.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ local io_open = io.open
1212

1313

1414
local _M = {
15-
_VERSION = '0.10',
15+
_VERSION = '0.11',
1616
}
1717

1818
local mt = { __index = _M }

lib/resty/qless/queue.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ end
4848

4949

5050
local _M = {
51-
_VERSION = '0.10',
51+
_VERSION = '0.11',
5252
}
5353

5454

lib/resty/qless/recurring_job.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ local cjson_decode = cjson.decode
1010

1111

1212
local _M = {
13-
_VERSION = '0.10',
13+
_VERSION = '0.11',
1414
}
1515

1616
local mt = {

lib/resty/qless/reserver/ordered.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ local ngx_ERR = ngx.ERR
44
local ngx_INFO = ngx.INFO
55

66
local _M = {
7-
_VERSION = '0.10',
7+
_VERSION = '0.11',
88
}
99

1010
local mt = { __index = _M }

lib/resty/qless/reserver/round_robin.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ local ngx_ERR = ngx.ERR
44
local ngx_INFO = ngx.INFO
55

66
local _M = {
7-
_VERSION = '0.10',
7+
_VERSION = '0.11',
88
}
99

1010
local mt = { __index = _M }

lib/resty/qless/reserver/shuffled_round_robin.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ local math_random = math.random
55
local math_randomseed = math.randomseed
66

77
local _M = {
8-
_VERSION = '0.10',
8+
_VERSION = '0.11',
99
}
1010

1111
local mt = { __index = _M }

lib/resty/qless/worker.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ local co_yield = coroutine.yield
1717

1818

1919
local _M = {
20-
_VERSION = '0.10',
20+
_VERSION = '0.11',
2121
}
2222

2323
local mt = { __index = _M }
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package = "lua-resty-qless"
2-
version = "0.10-0"
2+
version = "0.11-0"
33
source = {
44
url = "git://github.com/pintsized/lua-resty-qless",
5-
tag = "v0.10"
5+
tag = "v0.11"
66
}
77
description = {
88
summary = "Lua binding to Qless (Queue / Pipeline management) for OpenResty",
@@ -26,7 +26,7 @@ description = {
2626

2727
dependencies = {
2828
"lua >= 5.1",
29-
"lua-resty-redis-connector >= 0.04",
29+
"lua-resty-redis-connector >= 0.05",
3030
}
3131

3232
local modules = {

0 commit comments

Comments
 (0)