Skip to content

Commit

Permalink
release 1.1.0
Browse files Browse the repository at this point in the history
Have been tested with
* OpenResty 1.17.8 + OpenSSL 1.1.1
* OpenResty 1.15.8 + OpenSSL 1.0.2
  • Loading branch information
spacewander committed Aug 24, 2020
1 parent e3f53f8 commit d08ee10
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist.ini
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ is_original=yes
license=mit
lib_dir=lib
repo_link=https://github.com/spacewander/lua-resty-rsa
version=1.0.2
version=1.1.0
2 changes: 1 addition & 1 deletion lib/resty/rsa.lua
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ local C = ffi.C
local tab_concat = table.concat
local setmetatable = setmetatable

local _M = { _VERSION = '1.0.2' }
local _M = { _VERSION = '1.1.0' }

local mt = { __index = _M }

Expand Down
25 changes: 25 additions & 0 deletions lua-resty-rsa-1.1.0-1.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
package = 'lua-resty-rsa'
version = '1.1.0-1'
source = {
url = 'git://github.com/spacewander/lua-resty-rsa.git',
tag = 'v1.1.0'
}
description = {
summary = 'RSA encrypt/decrypt & sign/verify for OpenResty/LuaJIT.',
detailed = [[
This library requires an nginx build
with OpenSSL, the ngx_lua module,
the LuaJIT 2.1.
]],
homepage = 'https://github.com/spacewander/lua-resty-rsa',
license = 'MIT'
}
dependencies = {
'lua >= 5.1'
}
build = {
type = 'builtin',
modules = {
['resty.rsa'] = 'lib/resty/rsa.lua'
}
}

0 comments on commit d08ee10

Please sign in to comment.