From c9ba56f197a05c9d695561caaff7305b69b9c8a6 Mon Sep 17 00:00:00 2001 From: sn0rt Date: Tue, 4 Apr 2023 16:43:42 +0800 Subject: [PATCH 1/2] feat: release v0.2.2 (#25) Signed-off-by: sn0rt --- rockspec/lua-resty-ldap-0.2.2-0.rockspec | 37 ++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 rockspec/lua-resty-ldap-0.2.2-0.rockspec diff --git a/rockspec/lua-resty-ldap-0.2.2-0.rockspec b/rockspec/lua-resty-ldap-0.2.2-0.rockspec new file mode 100644 index 0000000..3a1ecad --- /dev/null +++ b/rockspec/lua-resty-ldap-0.2.2-0.rockspec @@ -0,0 +1,37 @@ +package = "lua-resty-ldap" +version = "0.2.2-0" +source = { + url = "git://github.com/api7/lua-resty-ldap", + tag = "v0.2.2", +} + +description = { + summary = "Nonblocking Lua ldap driver library for OpenResty.", + homepage = "https://github.com/iresty/lua-resty-ldap", + license = "Apache License 2.0", + maintainer = "Yuansheng Wang " +} + +dependencies = { + "lua_pack = 2.0.0-0", + "lpeg = 1.0.2-1", +} + +build = { + type = "make", + build_variables = { + CFLAGS="$(CFLAGS)", + LIBFLAG="$(LIBFLAG)", + LUA_LIBDIR="$(LUA_LIBDIR)", + LUA_BINDIR="$(LUA_BINDIR)", + LUA_INCDIR="$(LUA_INCDIR)", + LUA="$(LUA)", + }, + install_variables = { + INST_PREFIX="$(PREFIX)", + INST_BINDIR="$(BINDIR)", + INST_LIBDIR="$(LIBDIR)", + INST_LUADIR="$(LUADIR)", + INST_CONFDIR="$(CONFDIR)", + }, +} From 2d4b17d19334622115bd0ffa820ffb4c1d90e28a Mon Sep 17 00:00:00 2001 From: sn0rt Date: Thu, 6 Apr 2023 16:47:52 +0800 Subject: [PATCH 2/2] feat: release v0.2.2 Signed-off-by: sn0rt --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index d88ceb6..4ec4258 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lua-resty-ldap" -version = "0.2.1" +version = "0.2.2" edition = "2021" [lib]