From 55018d09228e1226a829fe2d9faa4ba995e769ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=BD=97=E6=B3=BD=E8=BD=A9?= Date: Thu, 15 Dec 2022 20:21:00 +0800 Subject: [PATCH] feat: release v1.10.2 (#201) --- rockspec/lua-resty-etcd-1.10.2-0.rockspec | 34 +++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 rockspec/lua-resty-etcd-1.10.2-0.rockspec diff --git a/rockspec/lua-resty-etcd-1.10.2-0.rockspec b/rockspec/lua-resty-etcd-1.10.2-0.rockspec new file mode 100644 index 00000000..7e664abf --- /dev/null +++ b/rockspec/lua-resty-etcd-1.10.2-0.rockspec @@ -0,0 +1,34 @@ +package = "lua-resty-etcd" +version = "1.10.2-0" +source = { + url = "git://github.com/api7/lua-resty-etcd", + tag = "v1.10.2" +} + +description = { + summary = "Nonblocking Lua etcd driver library for OpenResty", + homepage = "https://github.com/api7/lua-resty-etcd", + license = "Apache License 2.0", + maintainer = "Yuansheng Wang " +} + +dependencies = { + "api7-lua-resty-http = 0.1.0", + "api7-lua-protobuf = 0.1.1", + "luafilesystem = 1.7.0-2", + "penlight = 1.9.2-1", + "lua-typeof = 0.1" +} + +build = { + type = "builtin", + modules = { + ["resty.etcd"] = "lib/resty/etcd.lua", + ["resty.etcd.v3"] = "lib/resty/etcd/v3.lua", + ["resty.etcd.proto"] = "lib/resty/etcd/proto.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", + } +}