Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(*): bump to 0.20 #43

Merged
merged 1 commit into from
Aug 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion lib/resty/kafka/client.lua
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
-- Copyright (C) Dejiang Zhu(doujiang24)


Expand All @@ -21,7 +21,7 @@
end


local _M = { _VERSION = "0.19" }
local _M = { _VERSION = "0.20" }
local mt = { __index = _M }


Expand Down
2 changes: 1 addition & 1 deletion lib/resty/kafka/producer.lua
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
-- Copyright (C) Dejiang Zhu(doujiang24)


Expand Down Expand Up @@ -39,7 +39,7 @@
end


local _M = { _VERSION = "0.19" }
local _M = { _VERSION = "0.20" }
local mt = { __index = _M }


Expand Down
Loading