diff --git a/NEWS b/NEWS index 54390ec..5e7440b 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,12 @@ +0.2.0 - 2019-11-12 + + - Remove dependency on BasePlugin (#50, #51) + - Rename `component` tag to `lc` (#52) + - Restructure of Kong generated spans (#52) + - Change the name of spans for http traffic to `GET` (#57) + - Remove the no-longer supported `run_on` field from plugin config schema (#54) + + 0.1.3 - 2019-08-16 - Add support for stream subsystem (#30) diff --git a/kong-plugin-zipkin-scm-0.rockspec b/kong-plugin-zipkin-0.2.0-0.rockspec similarity index 87% rename from kong-plugin-zipkin-scm-0.rockspec rename to kong-plugin-zipkin-0.2.0-0.rockspec index 729ddcc..3abc646 100644 --- a/kong-plugin-zipkin-scm-0.rockspec +++ b/kong-plugin-zipkin-0.2.0-0.rockspec @@ -1,8 +1,9 @@ package = "kong-plugin-zipkin" -version = "scm-0" +version = "0.2.0-0" source = { - url = "git+https://github.com/kong/kong-plugin-zipkin.git"; + url = "https://github.com/kong/kong-plugin-zipkin/archive/v0.2.0.zip"; + dir = "kong-plugin-zipkin-0.2.0"; } description = { diff --git a/kong/plugins/zipkin/handler.lua b/kong/plugins/zipkin/handler.lua index f12aae8..0656ff7 100644 --- a/kong/plugins/zipkin/handler.lua +++ b/kong/plugins/zipkin/handler.lua @@ -6,7 +6,7 @@ local OpenTracingHandler = require "kong.plugins.zipkin.opentracing" -- Zipkin plugin derives from general opentracing one local ZipkinLogHandler = OpenTracingHandler:extend() -ZipkinLogHandler.VERSION = "scm" +ZipkinLogHandler.VERSION = "0.2.0" function ZipkinLogHandler.new_tracer(conf) diff --git a/kong/plugins/zipkin/opentracing.lua b/kong/plugins/zipkin/opentracing.lua index 5f8b8da..4492c05 100644 --- a/kong/plugins/zipkin/opentracing.lua +++ b/kong/plugins/zipkin/opentracing.lua @@ -11,7 +11,7 @@ local subsystem = ngx.config.subsystem local fmt = string.format local OpenTracingHandler = { - VERSION = "scm", + VERSION = "0.2.0", -- 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,