Skip to content

Commit

Permalink
release v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kikito committed May 20, 2020
1 parent 70b1951 commit b54a2bd
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
9 changes: 9 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
Original file line number Diff line number Diff line change
@@ -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 = {
Expand Down
2 changes: 1 addition & 1 deletion kong/plugins/zipkin/handler.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit b54a2bd

Please sign in to comment.