Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
subnetmarco committed Apr 14, 2016
1 parent 951defa commit 2efb03f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ This release includes support for PostgreSQL as Kong's primary datastore!
- LDAP: add support for LDAP authentication. [#1133](https://github.com/Mashape/kong/pull/1133)
- StatsD: add support for StatsD logging. [#1142](https://github.com/Mashape/kong/pull/1142)
- JWT: add support for RS256 signed tokens thanks to [@kdstew](https://github.com/kdstew)! [#1053](https://github.com/Mashape/kong/pull/1053)
- ACL: appends `X-Consumer-Groups` to the request, so the upstream service can check what groups the consumer belongs to. [#1154](https://github.com/Mashape/kong/pull/1154)
- Galileo (mashape-analytics): increase batch sending timeout to 30s. [#1091](https://github.com/Mashape/kong/pull/1091)
- Added `ttl_on_failure` option in the cluster configuration, to configure the TTL of failed nodes. [#1125](https://github.com/Mashape/kong/pull/1125)

Expand All @@ -30,6 +31,7 @@ This release includes support for PostgreSQL as Kong's primary datastore!

> **internal**
> - replace globals with singleton pattern thanks to [@mars](https://github.com/mars).
> - fixed resolution mismatches when using deep paths in the path resolver thanks to [siddharthkchatterjee](https://github.com/siddharthkchatterjee)
## [0.7.0] - 2016/02/24

Expand Down
4 changes: 2 additions & 2 deletions kong-0.8.0rc2-0.rockspec → kong-0.8.0-0.rockspec
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package = "kong"
version = "0.8.0rc2-0"
version = "0.8.0-0"
supported_platforms = {"linux", "macosx"}
source = {
url = "git://github.com/Mashape/kong",
tag = "0.8.0rc2"
tag = "0.8.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/constants.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
local VERSION = "0.8.0rc2"
local VERSION = "0.8.0"

return {
NAME = "kong",
Expand Down

0 comments on commit 2efb03f

Please sign in to comment.