Skip to content

Commit 7b3940d

Browse files
committed
release: 1.5.2
1 parent b75248c commit 7b3940d

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

CHANGELOG.md

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

44

5+
<a name="1.5.2"></a>
6+
## [1.5.2] - 2025-01-10
7+
### bug fixes
8+
- pkey.new() failed, if compile pkey.lua to LuaJIT bytecode ([#193](https://github.com/fffonion/lua-resty-openssl/issues/193)) [085f329](https://github.com/fffonion/lua-resty-openssl/commit/085f3298720cbe07d02a21daec6eebdf52e35a54)
9+
- **pkey:** fix compose of ecx key not effective [1dd84ae](https://github.com/fffonion/lua-resty-openssl/commit/1dd84ae5f7c5f5421be7ce5fb155d249238fed58)
10+
11+
512
<a name="1.5.1"></a>
613
## [1.5.1] - 2024-07-25
714

@@ -619,7 +626,8 @@
619626
- **x509:** export pubkey [ede4f81](https://github.com/fffonion/lua-resty-openssl/commit/ede4f817cb0fe092ad6f9ab5d6ecdcde864a9fd8)
620627

621628

622-
[Unreleased]: https://github.com/fffonion/lua-resty-openssl/compare/1.5.1...HEAD
629+
[Unreleased]: https://github.com/fffonion/lua-resty-openssl/compare/1.5.2...HEAD
630+
[1.5.2]: https://github.com/fffonion/lua-resty-openssl/compare/1.5.1...1.5.2
623631
[1.5.1]: https://github.com/fffonion/lua-resty-openssl/compare/1.5.0...1.5.1
624632
[1.5.0]: https://github.com/fffonion/lua-resty-openssl/compare/1.4.0...1.5.0
625633
[1.4.0]: https://github.com/fffonion/lua-resty-openssl/compare/1.3.1...1.4.0

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.5.1',
27+
_VERSION = '1.5.2',
2828
}
2929

3030
function _M.load_modules()

lua-resty-openssl-1.5.1-1.rockspec lua-resty-openssl-1.5.2-1.rockspec

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

0 commit comments

Comments
 (0)