Skip to content

Commit

Permalink
release: 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fffonion committed Mar 11, 2020
1 parent 0e767d0 commit 17dcb14
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 4 deletions.
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@
## [Unreleased]


<a name="0.6.0"></a>
## [0.6.0] - 2020-03-11
### feat
- **altname:** RFC822 alias to email [37467fc](https://github.com/fffonion/lua-resty-openssl/commit/37467fcf83093d0c99251f43a4cc916d5c934eda)
- **bn:** mathematics, bit shift and comparasion operations [87bf557](https://github.com/fffonion/lua-resty-openssl/commit/87bf5575a3643e11814b9c7be68ec78ce05011fe)
- **kdf:** use give id as type parameter [0e767d0](https://github.com/fffonion/lua-resty-openssl/commit/0e767d006f4561788d826eef82b753093f06ef9e)
- **kdf:** kdf.derive in luaossl compat mode [45788b6](https://github.com/fffonion/lua-resty-openssl/commit/45788b6ea742755b31d6b361950f3ea5d5d24bdf)
- **kdf:** add key derivation functions support [d78835e](https://github.com/fffonion/lua-resty-openssl/commit/d78835e861df4b7f79bb0fe5e17a2f19be1e0d3f)


<a name="0.5.4"></a>
## [0.5.4] - 2020-02-27
### fix
Expand Down Expand Up @@ -135,7 +145,8 @@
<a name="init"></a>
## init - 2019-09-25

[Unreleased]: https://github.com/fffonion/lua-resty-openssl/compare/0.5.4...HEAD
[Unreleased]: https://github.com/fffonion/lua-resty-openssl/compare/0.6.0...HEAD
[0.6.0]: https://github.com/fffonion/lua-resty-openssl/compare/0.5.4...0.6.0
[0.5.4]: https://github.com/fffonion/lua-resty-openssl/compare/0.5.3...0.5.4
[0.5.3]: https://github.com/fffonion/lua-resty-openssl/compare/0.5.2...0.5.3
[0.5.2]: https://github.com/fffonion/lua-resty-openssl/compare/0.5.1...0.5.2
Expand Down
2 changes: 1 addition & 1 deletion lib/resty/openssl.lua
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ end


local _M = {
_VERSION = '0.5.4',
_VERSION = '0.6.0',
bn = require("resty.openssl.bn"),
cipher = require("resty.openssl.cipher"),
digest = require("resty.openssl.digest"),
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package = "lua-resty-openssl"
version = "0.5.4-1"
version = "0.6.0-1"
source = {
url = "git+https://github.com/fffonion/lua-resty-openssl.git",
tag = "0.5.4"
tag = "0.6.0"
}
description = {
detailed = "FFI-based OpenSSL binding for LuaJIT.",
Expand All @@ -26,6 +26,7 @@ build = {
["resty.openssl.include.ec"] = "lib/resty/openssl/include/ec.lua",
["resty.openssl.include.evp"] = "lib/resty/openssl/include/evp.lua",
["resty.openssl.include.hmac"] = "lib/resty/openssl/include/hmac.lua",
["resty.openssl.include.kdf"] = "lib/resty/openssl/include/kdf.lua",
["resty.openssl.include.objects"] = "lib/resty/openssl/include/objects.lua",
["resty.openssl.include.ossl_typ"] = "lib/resty/openssl/include/ossl_typ.lua",
["resty.openssl.include.pem"] = "lib/resty/openssl/include/pem.lua",
Expand All @@ -40,6 +41,7 @@ build = {
["resty.openssl.include.x509.name"] = "lib/resty/openssl/include/x509/name.lua",
["resty.openssl.include.x509_vfy"] = "lib/resty/openssl/include/x509_vfy.lua",
["resty.openssl.include.x509v3"] = "lib/resty/openssl/include/x509v3.lua",
["resty.openssl.kdf"] = "lib/resty/openssl/kdf.lua",
["resty.openssl.objects"] = "lib/resty/openssl/objects.lua",
["resty.openssl.pkey"] = "lib/resty/openssl/pkey.lua",
["resty.openssl.rand"] = "lib/resty/openssl/rand.lua",
Expand All @@ -53,6 +55,7 @@ build = {
["resty.openssl.x509.extension"] = "lib/resty/openssl/x509/extension.lua",
["resty.openssl.x509.extension.dist_points"] = "lib/resty/openssl/x509/extension/dist_points.lua",
["resty.openssl.x509.extension.info_access"] = "lib/resty/openssl/x509/extension/info_access.lua",
["resty.openssl.x509.extensions"] = "lib/resty/openssl/x509/extensions.lua",
["resty.openssl.x509.init"] = "lib/resty/openssl/x509/init.lua",
["resty.openssl.x509.name"] = "lib/resty/openssl/x509/name.lua",
["resty.openssl.x509.store"] = "lib/resty/openssl/x509/store.lua"
Expand Down

0 comments on commit 17dcb14

Please sign in to comment.