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

Commit

Permalink
Release v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kikito committed Oct 18, 2018
1 parent c673533 commit 3a43e1d
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions NEWS
@@ -1,3 +1,9 @@
0.1.0 - 2018-10-18

- Start using the new DB & PDK modules (compatibility with Kong >= 0.15.0)
- New schema format


0.0.6 - 2018-10-18

- Fix failures when request is invalid or exits early
Expand Down
@@ -1,8 +1,9 @@
package = "kong-plugin-zipkin"
version = "scm-0"
version = "0.1.0-0"

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

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

Expand Down
2 changes: 1 addition & 1 deletion kong/plugins/zipkin/opentracing.lua
Expand Up @@ -10,7 +10,7 @@ A plugin that derives this should:
local BasePlugin = require "kong.plugins.base_plugin"

local OpenTracingHandler = BasePlugin:extend()
OpenTracingHandler.VERSION = "scm"
OpenTracingHandler.VERSION = "0.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
Expand Down

0 comments on commit 3a43e1d

Please sign in to comment.