From b54a2bd3c36f6f39bf0a08e2e61846d8dd8d68f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Enrique=20Garc=C3=ADa=20Cota?= Date: Thu, 30 Apr 2020 18:17:33 +0200 Subject: [PATCH] release v1.1.0 --- NEWS | 9 +++++++++ ...0.0-1.rockspec => kong-plugin-zipkin-1.1.0-1.rockspec | 6 +++--- kong/plugins/zipkin/handler.lua | 2 +- 3 files changed, 13 insertions(+), 4 deletions(-) rename kong-plugin-zipkin-1.0.0-1.rockspec => kong-plugin-zipkin-1.1.0-1.rockspec (86%) diff --git a/NEWS b/NEWS index 5dfb3c5b839..10a9abc9eeb 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,12 @@ +1.1.0 - 2020-04-30 + +New features: + - New `traceid_byte_count` config option (#74) + - Handling of W3C header, and new `header_type` config option (#75) + +Fixes: + - (docs) Span annotations not correctly documented in README (#77) + 1.0.0 - 2020-03-09 This version of the plugin has changed enough to be named 1.0.0. diff --git a/kong-plugin-zipkin-1.0.0-1.rockspec b/kong-plugin-zipkin-1.1.0-1.rockspec similarity index 86% rename from kong-plugin-zipkin-1.0.0-1.rockspec rename to kong-plugin-zipkin-1.1.0-1.rockspec index 8170534d862..0119cea39e3 100644 --- a/kong-plugin-zipkin-1.0.0-1.rockspec +++ b/kong-plugin-zipkin-1.1.0-1.rockspec @@ -1,9 +1,9 @@ package = "kong-plugin-zipkin" -version = "1.0.0-1" +version = "1.1.0-1" source = { - url = "https://github.com/kong/kong-plugin-zipkin/archive/v1.0.0.zip", - dir = "kong-plugin-zipkin-1.0.0", + url = "https://github.com/kong/kong-plugin-zipkin/archive/v1.1.0.zip", + dir = "kong-plugin-zipkin-1.1.0", } description = { diff --git a/kong/plugins/zipkin/handler.lua b/kong/plugins/zipkin/handler.lua index 902221edb04..a6c6ffa8cc2 100644 --- a/kong/plugins/zipkin/handler.lua +++ b/kong/plugins/zipkin/handler.lua @@ -8,7 +8,7 @@ local fmt = string.format local rand_bytes = utils.get_rand_bytes local ZipkinLogHandler = { - VERSION = "1.0.0", + VERSION = "1.1.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,