Skip to content

Commit

Permalink
chore(acme) release: 0.2.6 (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
fffonion committed Jun 26, 2020
1 parent 7acb169 commit 16df703
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Table of Contents

- [0.2.6](#026---20200626)
- [0.2.5](#025---20200604)
- [0.2.4](#024---20200526)
- [0.2.3](#023---20200518)
Expand All @@ -10,6 +11,11 @@
- [0.1.1](#011---20191212)
- [0.1.0](#010---20191212)

## [0.2.6] - 2020/06/26

- Add new `tls_verify` and `tls_server_name` parameter to vault storage.
- Prepare backward compat for next lua-resty-acme release

## [0.2.5] - 2020/06/04

- Rename API endpoints to be RESTful.
Expand Down Expand Up @@ -51,6 +57,8 @@

- Initial release of ACME plugin for Kong.


[0.2.6]: https://github.com/Kong/kong-plugin-acme/compare/0.2.5...0.2.6
[0.2.5]: https://github.com/Kong/kong-plugin-acme/compare/0.2.4...0.2.5
[0.2.4]: https://github.com/Kong/kong-plugin-acme/compare/0.2.3...0.2.4
[0.2.3]: https://github.com/Kong/kong-plugin-acme/compare/0.2.2...0.2.3
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package = "kong-plugin-acme"
version = "0.2.5-1"
version = "0.2.6-1"
source = {
url = "git+https://github.com/Kong/kong-plugin-acme.git",
tag = "0.2.5",
tag = "0.2.6",
}
description = {
homepage = "https://github.com/Kong/kong-plugin-acme",
Expand Down
2 changes: 1 addition & 1 deletion kong/plugins/acme/handler.lua
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ local domains_matcher
local LetsencryptHandler = {}

LetsencryptHandler.PRIORITY = 999
LetsencryptHandler.VERSION = "0.2.5"
LetsencryptHandler.VERSION = "0.2.6"

local function build_domain_matcher(domains)
local domains_plain = {}
Expand Down

0 comments on commit 16df703

Please sign in to comment.