Skip to content

Commit

Permalink
release: 0.13.0 (#113)
Browse files Browse the repository at this point in the history
  • Loading branch information
fffonion committed Mar 27, 2024
1 parent 1bbf39c commit 7b698a2
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
12 changes: 11 additions & 1 deletion CHANGELOG.md
Expand Up @@ -2,6 +2,15 @@
## [Unreleased]


<a name="0.13.0"></a>
## [0.13.0] - 2024-03-28
### bug fixes
- **autossl:** log the errors on the list certificates request ([#110](https://github.com/fffonion/lua-resty-acme/issues/110)) [6c9760f](https://github.com/fffonion/lua-resty-acme/commit/6c9760f21d38fccd7971a70019afc5fe1fc6f1be)

### features
- **autossl:** add option to delete none whitelisted domains in certificate renewal ([#112](https://github.com/fffonion/lua-resty-acme/issues/112)) [1bbf39c](https://github.com/fffonion/lua-resty-acme/commit/1bbf39c84de90a54a3f61b3ee2e331e613eb5e7a)


<a name="0.12.0"></a>
## [0.12.0] - 2023-09-05
### bug fixes
Expand Down Expand Up @@ -290,7 +299,8 @@
- **crypto:** ffi openssl supports generating ec certificates [bc9d989](https://github.com/fffonion/lua-resty-acme/commit/bc9d989b4eb8bfa954f2f1ab08b0449957a27402)


[Unreleased]: https://github.com/fffonion/lua-resty-acme/compare/0.12.0...HEAD
[Unreleased]: https://github.com/fffonion/lua-resty-acme/compare/0.13.0...HEAD
[0.13.0]: https://github.com/fffonion/lua-resty-acme/compare/0.12.0...0.13.0
[0.12.0]: https://github.com/fffonion/lua-resty-acme/compare/0.11.0...0.12.0
[0.11.0]: https://github.com/fffonion/lua-resty-acme/compare/0.10.1...0.11.0
[0.10.1]: https://github.com/fffonion/lua-resty-acme/compare/0.10.0...0.10.1
Expand Down
2 changes: 1 addition & 1 deletion lib/resty/acme/client.lua
Expand Up @@ -23,7 +23,7 @@ local wait_backoff_series = {1, 1, 2, 3, 5, 8, 13, 21}
local TEST_TRY_NONCE_INFINITELY = not not os.getenv("TEST_TRY_NONCE_INFINITELY")

local _M = {
_VERSION = '0.12.0'
_VERSION = '0.13.0'
}
local mt = {__index = _M}

Expand Down
@@ -1,8 +1,8 @@
package = "lua-resty-acme"
version = "0.12.0-1"
version = "0.13.0-1"
source = {
url = "git+https://github.com/fffonion/lua-resty-acme.git",
tag = "0.12.0"
tag = "0.13.0"
}
description = {
summary = "Automatic Let's Encrypt certificate serving and Lua implementation of ACME procotol",
Expand Down

0 comments on commit 7b698a2

Please sign in to comment.