Skip to content

Commit

Permalink
release(0.9.4)
Browse files Browse the repository at this point in the history
  • Loading branch information
subnetmarco committed Nov 3, 2016
1 parent 4ed5ecb commit 5e55b7c
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 4 deletions.
16 changes: 15 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
## [Unreleased][unreleased]

## [0.9.4] - 2016/11/02

### Fixed

- Fixed the random string generator that was causing some problems, especially
in Serf for clustering. [#1754](https://github.com/Mashape/kong/pull/1754)
- Seed random number generator in CLI.
[#1641](https://github.com/Mashape/kong/pull/1641)
- Reducing log noise in the Admin API.
[#1781](https://github.com/Mashape/kong/pull/1781)
- Fixed the reports lock implementation that was generating a periodic error
message. [#1783](https://github.com/Mashape/kong/pull/1783)

## [0.9.3] - 2016/10/07

### Added
Expand Down Expand Up @@ -755,7 +768,8 @@ First version running with Cassandra.
- CLI `bin/kong` script.
- Database migrations (using `db.lua`).

[unreleased]: https://github.com/mashape/kong/compare/0.9.3...next
[unreleased]: https://github.com/mashape/kong/compare/0.9.4...next
[0.9.3]: 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
[0.9.1]: https://github.com/mashape/kong/compare/0.9.0...0.9.1
Expand Down
4 changes: 2 additions & 2 deletions kong-0.9.3-0.rockspec → kong-0.9.4-0.rockspec
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package = "kong"
version = "0.9.3-0"
version = "0.9.4-0"
supported_platforms = {"linux", "macosx"}
source = {
url = "git://github.com/Mashape/kong",
tag = "0.9.3"
tag = "0.9.4"
}
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 = 3,
patch = 4,
pre_release = nil
}, {
__tostring = function(t)
Expand Down

0 comments on commit 5e55b7c

Please sign in to comment.