Skip to content

Commit

Permalink
chore(acme) bump version to 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
fffonion committed Dec 12, 2019
1 parent d69c23c commit 8c466c5
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 2 deletions.
16 changes: 15 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1 +1,15 @@
nothing here yet
# Table of Contents

- [0.1.1](#011---20101212)
- [0.1.0](#010---20101212)

## [0.1.1] - 2019/12/12

- Remove BasePlugin dependency.

## [0.1.0] - 2019/12/12

- Initial release of ACME plugin for Kong.

[0.1.1]: https://github.com/Kong/kong-plugin-prometheus/compare/0.1.1...0.1.0
[0.1.0]: https://github.com/Kong/kong-plugin-acme/commit/8b250b72218a350b71723670005c3c355e5d73b4
26 changes: 26 additions & 0 deletions kong-plugin-acme-0.1.1-1.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
package = "kong-plugin-acme"
version = "0.1.1-1"
source = {
url = "git+https://github.com/Kong/kong-plugin-acme.git"
}
description = {
homepage = "https://github.com/Kong/kong-plugin-acme",
summary = "Let's Encrypt integration with Kong",
license = "Apache 2.0",
}
build = {
type = "builtin",
modules = {
["kong.plugins.acme.client"] = "kong/plugins/acme/client.lua",
["kong.plugins.acme.daos"] = "kong/plugins/acme/daos.lua",
["kong.plugins.acme.handler"] = "kong/plugins/acme/handler.lua",
["kong.plugins.acme.migrations.000_base_acme"] = "kong/plugins/acme/migrations/000_base_acme.lua",
["kong.plugins.acme.migrations.init"] = "kong/plugins/acme/migrations/init.lua",
["kong.plugins.acme.schema"] = "kong/plugins/acme/schema.lua",
["kong.plugins.acme.storage.kong"] = "kong/plugins/acme/storage/kong.lua"
}
}
dependencies = {
--"kong >= 1.2.0",
"lua-resty-acme >= 0.4.0"
}
2 changes: 1 addition & 1 deletion kong/plugins/acme/handler.lua
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ local default_cert_key
local LetsencryptHandler = {}

LetsencryptHandler.PRIORITY = 1000
LetsencryptHandler.VERSION = "0.1.0"
LetsencryptHandler.VERSION = "0.1.1"

function LetsencryptHandler:init_worker()
kong.log.info("acme renew timer started")
Expand Down

0 comments on commit 8c466c5

Please sign in to comment.