From 1730f8dc5546174f254f2bf0d30ee90e45328517 Mon Sep 17 00:00:00 2001 From: samugi Date: Fri, 16 Aug 2024 17:52:02 +0200 Subject: [PATCH] chore(*): bump to 0.20 --- ...ka-0.19-0.rockspec => kong-lua-resty-kafka-0.20-0.rockspec | 4 ++-- lib/resty/kafka/client.lua | 2 +- lib/resty/kafka/producer.lua | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) rename kong-lua-resty-kafka-0.19-0.rockspec => kong-lua-resty-kafka-0.20-0.rockspec (98%) diff --git a/kong-lua-resty-kafka-0.19-0.rockspec b/kong-lua-resty-kafka-0.20-0.rockspec similarity index 98% rename from kong-lua-resty-kafka-0.19-0.rockspec rename to kong-lua-resty-kafka-0.20-0.rockspec index 2cf4b989..27ec8942 100644 --- a/kong-lua-resty-kafka-0.19-0.rockspec +++ b/kong-lua-resty-kafka-0.20-0.rockspec @@ -1,8 +1,8 @@ package = "kong-lua-resty-kafka" -version = "0.19-0" +version = "0.20-0" source = { url = "git+https://github.com/Kong/lua-resty-kafka", - tag = "v0.19" + tag = "v0.20" } description = { summary = "Lua Kafka client driver for the ngx_lua based on the cosocket API", diff --git a/lib/resty/kafka/client.lua b/lib/resty/kafka/client.lua index 9ab599f8..8f03a650 100644 --- a/lib/resty/kafka/client.lua +++ b/lib/resty/kafka/client.lua @@ -21,7 +21,7 @@ if not ok then end -local _M = { _VERSION = "0.19" } +local _M = { _VERSION = "0.20" } local mt = { __index = _M } diff --git a/lib/resty/kafka/producer.lua b/lib/resty/kafka/producer.lua index b43943fb..9ae8701d 100644 --- a/lib/resty/kafka/producer.lua +++ b/lib/resty/kafka/producer.lua @@ -39,7 +39,7 @@ if not ok then end -local _M = { _VERSION = "0.19" } +local _M = { _VERSION = "0.20" } local mt = { __index = _M }