Skip to content

Commit

Permalink
release 0.9.0 (Kong#1521)
Browse files Browse the repository at this point in the history
  • Loading branch information
subnetmarco authored Aug 19, 2016
1 parent b002182 commit 0cdeb32
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## [Unreleased][unreleased]
## [0.9.0] - 2016/08/18

The main focus of this release is Kong's new CLI. With a simpler configuration file, new settings, environment variables support, new commands as well as a new interpreter, the new CLI gives more power and flexibility to Kong users and allow for an easier integration in your deployment workflow, as well as better testing for developers and plugins authors. Additionally, some new plugins and performance improvements are included as well as the regular bug fixes.

Expand Down
4 changes: 2 additions & 2 deletions kong-0.9.0rc4-0.rockspec → kong-0.9.0-0.rockspec
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package = "kong"
version = "0.9.0rc4-0"
version = "0.9.0-0"
supported_platforms = {"linux", "macosx"}
source = {
url = "git://github.com/Mashape/kong",
tag = "0.9.0rc4"
tag = "0.9.0"
}
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
Expand Up @@ -2,7 +2,7 @@ local version = setmetatable({
major = 0,
minor = 9,
patch = 0,
pre_release = "rc4"
pre_release = nil
}, {
__tostring = function(t)
return string.format("%d.%d.%d%s", t.major, t.minor, t.patch,
Expand Down

0 comments on commit 0cdeb32

Please sign in to comment.