Skip to content

Commit

Permalink
release(0.9.5)
Browse files Browse the repository at this point in the history
  • Loading branch information
subnetmarco committed Nov 8, 2016
1 parent 55d1237 commit f0fc45e
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 5 deletions.
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions kong-0.9.4-0.rockspec → kong-0.9.5-0.rockspec
Original file line number Diff line number Diff line change
@@ -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.",
Expand Down
2 changes: 1 addition & 1 deletion kong/meta.lua
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
local version = setmetatable({
major = 0,
minor = 9,
patch = 4,
patch = 5,
pre_release = nil
}, {
__tostring = function(t)
Expand Down
2 changes: 1 addition & 1 deletion spec/01-unit/01-rockspec_meta_spec.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit f0fc45e

Please sign in to comment.