Skip to content

Commit

Permalink
release: 0.12.3 (#3284)
Browse files Browse the repository at this point in the history
* docs(changelog) add 0.12.3 & 0.13.0rc2 changes

* chore(*) bump version to 0.12.3
  • Loading branch information
thibaultcha authored and kikito committed Mar 12, 2018
1 parent 6abacf0 commit cf910ab
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 3 deletions.
28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

- [Scheduled](#scheduled)
- [Released](#released)
- [0.13.0rc2](#0130rc2)
- [0.12.3](#0123---20180312)
- [0.13.0rc1](#0130rc1)
- [0.12.2](#0122---20180228)
- [0.12.1](#0121---20180118)
Expand All @@ -28,6 +30,30 @@ a detailed changeset of their content.
This section describes publicly available releases and a detailed changeset of
their content.

## [0.13.0rc2]

- **rc2 release date**: March 12th 2018
- **Stable release date (target)**: March 14th 2018

### Fixed

- Suppress a memory leak in the core introduced in 0.12.2 and included in
0.13.0rc2.
Thanks [@mengskysama](https://github.com/mengskysama) for the report.
[#3278](https://github.com/Kong/kong/pull/3278)

[Back to TOC](#table-of-contents)

## [0.12.3] - 2018/03/12

### Fixed

- Suppress a memory leak in the core introduced in 0.12.2.
Thanks [@mengskysama](https://github.com/mengskysama) for the report.
[#3278](https://github.com/Kong/kong/pull/3278)

[Back to TOC](#table-of-contents)

## [0.13.0rc1]

- **rc1 release date**: February 28th 2018
Expand Down Expand Up @@ -2364,7 +2390,9 @@ First version running with Cassandra.

[Back to TOC](#table-of-contents)

[0.13.0rc2]: https://github.com/Kong/kong/compare/0.13.0rc1...0.13.0rc2
[0.13.0rc1]: https://github.com/Kong/kong/compare/0.12.2...0.13.0rc1
[0.12.3]: https://github.com/Kong/kong/compare/0.12.2...0.12.3
[0.12.2]: https://github.com/Kong/kong/compare/0.12.1...0.12.2
[0.12.1]: https://github.com/Kong/kong/compare/0.12.0...0.12.1
[0.12.0]: https://github.com/Kong/kong/compare/0.11.2...0.12.0
Expand Down
4 changes: 2 additions & 2 deletions kong-0.12.2-0.rockspec → kong-0.12.3-0.rockspec
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package = "kong"
version = "0.12.2-0"
version = "0.12.3-0"
supported_platforms = {"linux", "macosx"}
source = {
url = "git://github.com/Kong/kong",
tag = "0.12.2"
tag = "0.12.3"
}
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 = 12,
patch = 2,
patch = 3,
--suffix = ""
}, {
__tostring = function(t)
Expand Down

0 comments on commit cf910ab

Please sign in to comment.