From f0fc45ed5211f8869d4f768a72090df3519b3aef Mon Sep 17 00:00:00 2001 From: thefosk Date: Mon, 7 Nov 2016 16:10:05 -0800 Subject: [PATCH] release(0.9.5) --- CHANGELOG.md | 14 +++++++++++++- kong-0.9.4-0.rockspec => kong-0.9.5-0.rockspec | 4 ++-- kong/meta.lua | 2 +- spec/01-unit/01-rockspec_meta_spec.lua | 2 +- 4 files changed, 17 insertions(+), 5 deletions(-) rename kong-0.9.4-0.rockspec => kong-0.9.5-0.rockspec (99%) diff --git a/CHANGELOG.md b/CHANGELOG.md index ca04b1870aa2..3368e5c58fbd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ ## [Unreleased][unreleased] +## [0.9.5] - 2016/11/07 + +### Changed + +- Dropping support for OpenResty 1.9.15.1 in favor of 1.11.2.1 + [#1797](https://github.com/Mashape/kong/pull/1797) + +### Fixed + +- Fixed an error (introduced in 0.9.4) in the auto-clustering event + ## [0.9.4] - 2016/11/02 ### Fixed @@ -768,7 +779,8 @@ First version running with Cassandra. - CLI `bin/kong` script. - Database migrations (using `db.lua`). -[unreleased]: https://github.com/mashape/kong/compare/0.9.4...next +[unreleased]: https://github.com/mashape/kong/compare/0.9.5...next +[0.9.5]: https://github.com/mashape/kong/compare/0.9.4...0.9.5 [0.9.4]: https://github.com/mashape/kong/compare/0.9.3...0.9.4 [0.9.3]: https://github.com/mashape/kong/compare/0.9.2...0.9.3 [0.9.2]: https://github.com/mashape/kong/compare/0.9.1...0.9.2 diff --git a/kong-0.9.4-0.rockspec b/kong-0.9.5-0.rockspec similarity index 99% rename from kong-0.9.4-0.rockspec rename to kong-0.9.5-0.rockspec index 19db03e2885c..6ef3f54f9aef 100644 --- a/kong-0.9.4-0.rockspec +++ b/kong-0.9.5-0.rockspec @@ -1,9 +1,9 @@ package = "kong" -version = "0.9.4-0" +version = "0.9.5-0" supported_platforms = {"linux", "macosx"} source = { url = "git://github.com/Mashape/kong", - tag = "0.9.4" + tag = "0.9.5" } 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 c0f439aecab9..513b228ee303 100644 --- a/kong/meta.lua +++ b/kong/meta.lua @@ -1,7 +1,7 @@ local version = setmetatable({ major = 0, minor = 9, - patch = 4, + patch = 5, pre_release = nil }, { __tostring = function(t) diff --git a/spec/01-unit/01-rockspec_meta_spec.lua b/spec/01-unit/01-rockspec_meta_spec.lua index fd4de0b497fe..8d69e207ebd0 100644 --- a/spec/01-unit/01-rockspec_meta_spec.lua +++ b/spec/01-unit/01-rockspec_meta_spec.lua @@ -34,7 +34,7 @@ describe("rockspec/meta", function() end) it("has a _DEPENDENCIES field", function() assert.is_table(meta._DEPENDENCIES) - assert.equal(2, #meta._DEPENDENCIES.nginx) + assert.equal(1, #meta._DEPENDENCIES.nginx) assert.equal(2, #meta._DEPENDENCIES.serf) end) end)