Skip to content

Commit 699554c

Browse files
committed
release: 1.6.1
1 parent ae9d2ae commit 699554c

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

CHANGELOG.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
## [Unreleased]
33

44

5+
<a name="1.6.1"></a>
6+
## [1.6.1] - 2025-04-16
7+
### bug fixes
8+
- **kdf:** fix derive API may not work if options_count is set to 1 [ae9d2ae](https://github.com/fffonion/lua-resty-openssl/commit/ae9d2aef9dd762a2af55addb83a2349abca994f4)
9+
10+
511
<a name="1.6.0"></a>
612
## [1.6.0] - 2025-04-14
713
### bug fixes
@@ -639,7 +645,8 @@
639645
- **x509:** export pubkey [ede4f81](https://github.com/fffonion/lua-resty-openssl/commit/ede4f817cb0fe092ad6f9ab5d6ecdcde864a9fd8)
640646

641647

642-
[Unreleased]: https://github.com/fffonion/lua-resty-openssl/compare/1.6.0...HEAD
648+
[Unreleased]: https://github.com/fffonion/lua-resty-openssl/compare/1.6.1...HEAD
649+
[1.6.1]: https://github.com/fffonion/lua-resty-openssl/compare/1.6.0...1.6.1
643650
[1.6.0]: https://github.com/fffonion/lua-resty-openssl/compare/1.5.2...1.6.0
644651
[1.5.2]: https://github.com/fffonion/lua-resty-openssl/compare/1.5.1...1.5.2
645652
[1.5.1]: https://github.com/fffonion/lua-resty-openssl/compare/1.5.0...1.5.1

lib/resty/openssl.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ try_require_modules()
2424

2525

2626
local _M = {
27-
_VERSION = '1.6.0',
27+
_VERSION = '1.6.1',
2828
}
2929

3030
function _M.load_modules()

lua-resty-openssl-1.6.0-1.rockspec renamed to lua-resty-openssl-1.6.1-1.rockspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package = "lua-resty-openssl"
2-
version = "1.6.0-1"
2+
version = "1.6.1-1"
33
source = {
44
url = "git+https://github.com/fffonion/lua-resty-openssl.git",
5-
tag = "1.6.0"
5+
tag = "1.6.1"
66
}
77
description = {
88
detailed = "FFI-based OpenSSL binding for LuaJIT.",

0 commit comments

Comments
 (0)