From 18f1e58083211ef1eaa5fd77f796fd67d9437285 Mon Sep 17 00:00:00 2001 From: Elvin Efendi Date: Wed, 30 Dec 2020 11:29:41 -0500 Subject: [PATCH] prepare 0.2.0 release --- lib/resty/global_throttle.lua | 2 +- ...1-1.rockspec => lua-resty-global-throttle-0.2.0-1.rockspec | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) rename lua-resty-global-throttle-0.1.1-1.rockspec => lua-resty-global-throttle-0.2.0-1.rockspec (96%) diff --git a/lib/resty/global_throttle.lua b/lib/resty/global_throttle.lua index 3e6d4a4..87be05d 100644 --- a/lib/resty/global_throttle.lua +++ b/lib/resty/global_throttle.lua @@ -4,7 +4,7 @@ local sliding_window_new = require("resty.global_throttle.sliding_window").new local setmetatable = setmetatable local string_format = string.format -local _M = { _VERSION = "0.1.1" } +local _M = { _VERSION = "0.2.0" } local mt = { __index = _M } local MAX_NAMESPACE_LEN = 35 diff --git a/lua-resty-global-throttle-0.1.1-1.rockspec b/lua-resty-global-throttle-0.2.0-1.rockspec similarity index 96% rename from lua-resty-global-throttle-0.1.1-1.rockspec rename to lua-resty-global-throttle-0.2.0-1.rockspec index d0936bd..c707e61 100644 --- a/lua-resty-global-throttle-0.1.1-1.rockspec +++ b/lua-resty-global-throttle-0.2.0-1.rockspec @@ -1,8 +1,8 @@ package = "lua-resty-global-throttle" -version = "0.1.1-1" +version = "0.2.0-1" source = { url = "git://github.com/ElvinEfendi/lua-resty-global-throttle", - tag = "v0.1.1" + tag = "v0.2.0" } description = { summary = "Distributed flow control middleware for Openresty.",