Skip to content

Commit 8919584

Browse files
authored
release: 1.0.1 (#129)
1 parent 3a1bc27 commit 8919584

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.0.1"></a>
6+
## [1.0.1] - 2023-11-07
7+
### bug fixes
8+
- **jwk:** return error if exporting private key from public key ([#128](https://github.com/fffonion/lua-resty-openssl/issues/128)) [3a1bc27](https://github.com/fffonion/lua-resty-openssl/commit/3a1bc273e2a3f41faa7eb68f2939fd1fc25cdecb)
9+
10+
511
<a name="1.0.0"></a>
612
## [1.0.0] - 2023-11-03
713
### code refactoring
@@ -536,7 +542,8 @@
536542
- **x509:** export pubkey [ede4f81](https://github.com/fffonion/lua-resty-openssl/commit/ede4f817cb0fe092ad6f9ab5d6ecdcde864a9fd8)
537543

538544

539-
[Unreleased]: https://github.com/fffonion/lua-resty-openssl/compare/1.0.0...HEAD
545+
[Unreleased]: https://github.com/fffonion/lua-resty-openssl/compare/1.0.1...HEAD
546+
[1.0.1]: https://github.com/fffonion/lua-resty-openssl/compare/1.0.0...1.0.1
540547
[1.0.0]: https://github.com/fffonion/lua-resty-openssl/compare/0.8.26...1.0.0
541548
[0.8.26]: https://github.com/fffonion/lua-resty-openssl/compare/0.8.25...0.8.26
542549
[0.8.25]: https://github.com/fffonion/lua-resty-openssl/compare/0.8.24...0.8.25

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

3030
local libcrypto_name

lua-resty-openssl-1.0.0-1.rockspec lua-resty-openssl-1.0.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.0.0-1"
2+
version = "1.0.1-1"
33
source = {
44
url = "git+https://github.com/fffonion/lua-resty-openssl.git",
5-
tag = "1.0.0"
5+
tag = "1.0.1"
66
}
77
description = {
88
detailed = "FFI-based OpenSSL binding for LuaJIT.",

0 commit comments

Comments
 (0)