From a411674837e473bfd3a7517a6222bf7c3d62dac6 Mon Sep 17 00:00:00 2001 From: alrex Date: Thu, 14 Nov 2019 09:53:24 -0800 Subject: [PATCH] Preparing 0.18.0 release (#237) Signed-off-by: Alex Boten --- CHANGELOG.md | 7 ++++++- VERSION | 2 +- version.go | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b7ce1bf2e..829309df3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ # Changelog -## [Pending Release](https://github.com/lightstep/lightstep-tracer-go/compare/v0.16.0...HEAD) +## [Pending Release](https://github.com/lightstep/lightstep-tracer-go/compare/v0.18.0...HEAD) + +## [v0.18.0](https://github.com/lightstep/lightstep-tracer-go/compare/v0.17.1...v0.18.0) +* Adding support for B3 headers [#224](https://github.com/lightstep/lightstep-tracer-go/issues/224) +* Fix OpenCensus to LighStep ID conversion +* Added new constructor `CreateTracer` to propagate errors [#226](https://github.com/lightstep/lightstep-tracer-go/issues/226) ## [v0.17.1](https://github.com/lightstep/lightstep-tracer-go/compare/v0.17.0...v0.17.1) * Fixes [#219](https://github.com/lightstep/lightstep-tracer-go/issues/219) so that there is no longer a data race when reading and writing from spans diff --git a/VERSION b/VERSION index 7cca7711a..66333910a 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.17.1 +0.18.0 diff --git a/version.go b/version.go index 9c50efe1c..87d77df1a 100644 --- a/version.go +++ b/version.go @@ -1,4 +1,4 @@ package lightstep // TracerVersionValue provides the current version of the lightstep-tracer-go release -const TracerVersionValue = "0.17.0" +const TracerVersionValue = "0.18.0"