Skip to content

Commit

Permalink
chore(release) 0.9.8 (#2001)
Browse files Browse the repository at this point in the history
  • Loading branch information
subnetmarco authored Jan 20, 2017
1 parent aa3573d commit c86a092
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 4 deletions.
20 changes: 19 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
## [Unreleased][unreleased]

## [0.9.8] - 2017/01/19

### Fixed

- Properly set the admin IP in the Serf script.

### Changed

- Provide negative-caching for missed database entities. This should improve
performance in some cases.
[#1914](https://github.com/Mashape/kong/pull/1914)

### Fixed

- Plugins:
- Fix fault tolerancy logic and error reporting in rate-limiting plugins.

## [0.9.7] - 2016/12/21

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

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

0 comments on commit c86a092

Please sign in to comment.