From a44e4c069fa06569e6715070c095140afe6f9234 Mon Sep 17 00:00:00 2001 From: yiyiyimu Date: Tue, 22 Jun 2021 16:12:10 -0400 Subject: [PATCH] feat: release v1.5.2 Signed-off-by: yiyiyimu --- rockspec/lua-resty-etcd-1.5.2-0.rockspec | 30 ++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 rockspec/lua-resty-etcd-1.5.2-0.rockspec diff --git a/rockspec/lua-resty-etcd-1.5.2-0.rockspec b/rockspec/lua-resty-etcd-1.5.2-0.rockspec new file mode 100644 index 00000000..aa23df3d --- /dev/null +++ b/rockspec/lua-resty-etcd-1.5.2-0.rockspec @@ -0,0 +1,30 @@ +package = "lua-resty-etcd" +version = "1.5.2-0" +source = { + url = "git://github.com/api7/lua-resty-etcd", + tag = "v1.5.2" +} + +description = { + summary = "Nonblocking Lua etcd driver library for OpenResty", + homepage = "https://github.com/api7/lua-resty-etcd", + license = "Apache License 2.0" +} + +dependencies = { + "api7-lua-resty-http = 0.1.0", + "lua-typeof = 0.1" +} + +build = { + type = "builtin", + modules = { + ["resty.etcd"] = "lib/resty/etcd.lua", + ["resty.etcd.v2"] = "lib/resty/etcd/v2.lua", + ["resty.etcd.v3"] = "lib/resty/etcd/v3.lua", + ["resty.etcd.utils"] = "lib/resty/etcd/utils.lua", + ["resty.etcd.serializers.json"] = "lib/resty/etcd/serializers/json.lua", + ["resty.etcd.serializers.raw"] = "lib/resty/etcd/serializers/raw.lua", + ["resty.etcd.health_check"] = "lib/resty/etcd/health_check.lua", + } +}