diff --git a/kong-1.1.0rc1-0.rockspec b/kong-1.1.0rc2-0.rockspec similarity index 99% rename from kong-1.1.0rc1-0.rockspec rename to kong-1.1.0rc2-0.rockspec index 951c7237095..d62762823eb 100644 --- a/kong-1.1.0rc1-0.rockspec +++ b/kong-1.1.0rc2-0.rockspec @@ -1,9 +1,9 @@ package = "kong" -version = "1.1.0rc1-0" +version = "1.1.0rc2-0" supported_platforms = {"linux", "macosx"} source = { url = "git://github.com/Kong/kong", - tag = "1.1.0rc1" + tag = "1.1.0rc2" } description = { summary = "Kong is a scalable and customizable API Management Layer built on top of Nginx.", diff --git a/kong/meta.lua b/kong/meta.lua index 0265365ad83..7583571dcaa 100644 --- a/kong/meta.lua +++ b/kong/meta.lua @@ -2,7 +2,7 @@ local version = setmetatable({ major = 1, minor = 1, patch = 0, - suffix = "rc1", + suffix = "rc2", }, { __tostring = function(t) return string.format("%d.%d.%d%s", t.major, t.minor, t.patch,