Skip to content
This repository has been archived by the owner on Nov 30, 2021. It is now read-only.

Commit

Permalink
chore(*) bump version to 0.2.0 (#58)
Browse files Browse the repository at this point in the history
  • Loading branch information
dndx authored and kikito committed Nov 13, 2019
1 parent 57111a0 commit 3aa1cc9
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
9 changes: 9 additions & 0 deletions 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)
Expand Down
@@ -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 = {
Expand Down
2 changes: 1 addition & 1 deletion kong/plugins/zipkin/handler.lua
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion kong/plugins/zipkin/opentracing.lua
Expand Up @@ -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,
Expand Down

0 comments on commit 3aa1cc9

Please sign in to comment.