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

Commit

Permalink
Release v0.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
james-callahan committed Oct 18, 2018
1 parent 174737f commit 5affbaa
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions NEWS
@@ -1,3 +1,9 @@
0.0.6 - 2018-10-18

- Fix failures when request is invalid or exits early
- Note that this will be the last release that supports Kong 0.14.


0.0.5 - 2018-09-16

- Fix possible bug when service name is missing
Expand Down
@@ -1,8 +1,9 @@
package = "kong-plugin-zipkin"
version = "scm-0"
version = "0.0.6-0"

source = {
url = "git+https://github.com/kong/kong-plugin-zipkin.git";
url = "https://github.com/kong/kong-plugin-zipkin/archive/v0.0.6.zip";
dir = "kong-plugin-zipkin-0.0.6";
}

description = {
Expand All @@ -15,8 +16,7 @@ dependencies = {
"lua >= 5.1";
"lua-cjson";
"lua-resty-http >= 0.11";
"kong >= 0.14";
"opentracing >= 0.0.2";
"opentracing == 0.0.2";
}

build = {
Expand Down
2 changes: 1 addition & 1 deletion kong/plugins/zipkin/opentracing.lua
Expand Up @@ -12,7 +12,7 @@ local public = require "kong.tools.public"
local ngx_set_header = ngx.req.set_header

local OpenTracingHandler = BasePlugin:extend()
OpenTracingHandler.VERSION = "scm"
OpenTracingHandler.VERSION = "0.0.6"

-- 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
Expand Down

0 comments on commit 5affbaa

Please sign in to comment.