diff --git a/CHANGELOG.md b/CHANGELOG.md index 24135c672d45..102fc24c6585 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +1.4.1 - 2021-07-08 + +Fixes: + - Multiple simultaneous instances of the plugin don't collide with each other (#116) + 1.4.0 - 2021-06-15 New features: diff --git a/kong-plugin-zipkin-1.4.0-1.rockspec b/kong-plugin-zipkin-1.4.1-1.rockspec similarity index 93% rename from kong-plugin-zipkin-1.4.0-1.rockspec rename to kong-plugin-zipkin-1.4.1-1.rockspec index cfcf6a894aaa..3f7e74deb320 100644 --- a/kong-plugin-zipkin-1.4.0-1.rockspec +++ b/kong-plugin-zipkin-1.4.1-1.rockspec @@ -1,9 +1,9 @@ package = "kong-plugin-zipkin" -version = "1.4.0-1" +version = "1.4.1-1" source = { - url = "https://github.com/kong/kong-plugin-zipkin/archive/v1.4.0.zip", - dir = "kong-plugin-zipkin-1.4.0", + url = "https://github.com/kong/kong-plugin-zipkin/archive/v1.4.1.zip", + dir = "kong-plugin-zipkin-1.4.1", } description = { diff --git a/kong/plugins/zipkin/handler.lua b/kong/plugins/zipkin/handler.lua index 69b804245c2d..fe15156f899d 100644 --- a/kong/plugins/zipkin/handler.lua +++ b/kong/plugins/zipkin/handler.lua @@ -10,7 +10,7 @@ local fmt = string.format local rand_bytes = utils.get_rand_bytes local ZipkinLogHandler = { - VERSION = "1.4.0", + VERSION = "1.4.1", -- We want to run first so that timestamps taken are at start of the phase -- also so that other plugins might be able to use our structures PRIORITY = 100000,