Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
pintsized committed Dec 17, 2019
1 parent be7e6ec commit dbfd945
Show file tree
Hide file tree
Showing 27 changed files with 27 additions and 27 deletions.
2 changes: 1 addition & 1 deletion lib/ledge.lua
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ local redis_connector = require("resty.redis.connector")


local _M = {
_VERSION = "2.2.0",
_VERSION = "2.2.1",

ORIGIN_MODE_BYPASS = 1, -- Never go to the origin, serve from cache or 503
ORIGIN_MODE_AVOID = 2, -- Avoid the origin, serve from cache where possible
Expand Down
2 changes: 1 addition & 1 deletion lib/ledge/background.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ local math_ceil = math.ceil
local qless = require("resty.qless")

local _M = {
_VERSION = "2.2.0",
_VERSION = "2.2.1",
}

local function put_background_job( queue, klass, data, options)
Expand Down
2 changes: 1 addition & 1 deletion lib/ledge/cache_key.lua
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ local get_fixed_field_metatable_proxy =


local _M = {
_VERSION = "2.2.0",
_VERSION = "2.2.1",
}


Expand Down
2 changes: 1 addition & 1 deletion lib/ledge/collapse.lua
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
local _M = {
_VERSION = "2.2.0",
_VERSION = "2.2.1",
}

-- Attempts to set a lock key in redis. The lock will expire after
Expand Down
2 changes: 1 addition & 1 deletion lib/ledge/esi.lua
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ local ngx_ERR = ngx.ERR


local _M = {
_VERSION = "2.2.0",
_VERSION = "2.2.1",
}


Expand Down
2 changes: 1 addition & 1 deletion lib/ledge/esi/processor_1_0.lua
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ local get_fixed_field_metatable_proxy =


local _M = {
_VERSION = "2.2.0",
_VERSION = "2.2.1",
}


Expand Down
2 changes: 1 addition & 1 deletion lib/ledge/esi/tag_parser.lua
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ local get_fixed_field_metatable_proxy =


local _M = {
_VERSION = "2.2.0",
_VERSION = "2.2.1",
}


Expand Down
2 changes: 1 addition & 1 deletion lib/ledge/gzip.lua
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ local zlib = require("ffi-zlib")


local _M = {
_VERSION = "2.2.0",
_VERSION = "2.2.1",
}


Expand Down
2 changes: 1 addition & 1 deletion lib/ledge/handler.lua
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ local response = require("ledge.response")


local _M = {
_VERSION = "2.2.0",
_VERSION = "2.2.1",
}


Expand Down
2 changes: 1 addition & 1 deletion lib/ledge/header_util.lua
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ local tbl_concat = table.concat


local _M = {
_VERSION = "2.2.0"
_VERSION = "2.2.1"
}

local mt = {
Expand Down
2 changes: 1 addition & 1 deletion lib/ledge/jobs/collect_entity.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ local create_storage_connection = require("ledge").create_storage_connection


local _M = {
_VERSION = "2.2.0",
_VERSION = "2.2.1",
}


Expand Down
2 changes: 1 addition & 1 deletion lib/ledge/jobs/purge.lua
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ local create_redis_slave_connection = require("ledge").create_redis_slave_connec
local close_redis_connection = require("ledge").close_redis_connection

local _M = {
_VERSION = "2.2.0",
_VERSION = "2.2.1",
}


Expand Down
2 changes: 1 addition & 1 deletion lib/ledge/jobs/revalidate.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ local http_headers = require "resty.http_headers"
local ngx_null = ngx.null

local _M = {
_VERSION = "2.2.0",
_VERSION = "2.2.1",
}


Expand Down
2 changes: 1 addition & 1 deletion lib/ledge/purge.lua
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ local put_background_job = require("ledge.background").put_background_job
local key_chain = require("ledge.cache_key").key_chain

local _M = {
_VERSION = "2.2.0",
_VERSION = "2.2.1",
}

local repset_len = -(str_len("::repset")+1)
Expand Down
2 changes: 1 addition & 1 deletion lib/ledge/range.lua
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ local ngx_PARTIAL_CONTENT = 206


local _M = {
_VERSION = "2.2.0",
_VERSION = "2.2.1",
}


Expand Down
2 changes: 1 addition & 1 deletion lib/ledge/request.lua
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ local tbl_insert = table.insert


local _M = {
_VERSION = "2.2.0",
_VERSION = "2.2.1",
}


Expand Down
2 changes: 1 addition & 1 deletion lib/ledge/response.lua
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ local save_key_chain = require("ledge.cache_key").save_key_chain
local _DEBUG = false

local _M = {
_VERSION = "2.2.0",
_VERSION = "2.2.1",
set_debug = function(debug) _DEBUG = debug end,
}

Expand Down
2 changes: 1 addition & 1 deletion lib/ledge/stale.lua
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ local get_numeric_header_token =


local _M = {
_VERSION = "2.2.0"
_VERSION = "2.2.1"
}


Expand Down
2 changes: 1 addition & 1 deletion lib/ledge/state_machine.lua
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ local get_fixed_field_metatable_proxy =
local _DEBUG = false

local _M = {
_VERSION = "2.2.0",
_VERSION = "2.2.1",
set_debug = function(debug) _DEBUG = debug end,
}

Expand Down
2 changes: 1 addition & 1 deletion lib/ledge/state_machine/actions.lua
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ local ngx_req_set_header = ngx.req.set_header
local get_gzip_decoder = require("ledge.gzip").get_gzip_decoder

local _M = { -- luacheck: no unused
_VERSION = "2.2.0",
_VERSION = "2.2.1",
}


Expand Down
2 changes: 1 addition & 1 deletion lib/ledge/state_machine/events.lua
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
local _M = { -- luacheck: no unused
_VERSION = "2.2.0",
_VERSION = "2.2.1",
}


Expand Down
2 changes: 1 addition & 1 deletion lib/ledge/state_machine/pre_transitions.lua
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
local _M = { -- luacheck: no unused
_VERSION = "2.2.0",
_VERSION = "2.2.1",
}


Expand Down
2 changes: 1 addition & 1 deletion lib/ledge/state_machine/states.lua
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ local vary_compare = require("ledge.cache_key").vary_compare


local _M = { -- luacheck: no unused
_VERSION = "2.2.0",
_VERSION = "2.2.1",
}


Expand Down
2 changes: 1 addition & 1 deletion lib/ledge/storage/redis.lua
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ local get_fixed_field_metatable_proxy =


local _M = {
_VERSION = "2.2.0",
_VERSION = "2.2.1",
}


Expand Down
2 changes: 1 addition & 1 deletion lib/ledge/util.lua
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ if not ok then ngx.log(ngx.ERR, err) end


local _M = {
_VERSION = "2.2.0",
_VERSION = "2.2.1",
string = {},
table = {},
mt = {},
Expand Down
2 changes: 1 addition & 1 deletion lib/ledge/validation.lua
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ local header_has_directive = require("ledge.header_util").header_has_directive


local _M = {
_VERSION = "2.2.0",
_VERSION = "2.2.1",
}


Expand Down
2 changes: 1 addition & 1 deletion lib/ledge/worker.lua
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ local fixed_field_metatable = require("ledge.util").mt.fixed_field_metatable


local _M = {
_VERSION = "2.2.0",
_VERSION = "2.2.1",
}


Expand Down

0 comments on commit dbfd945

Please sign in to comment.