diff --git a/CHANGELOG.md b/CHANGELOG.md index a78748475..b9e875a58 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,9 +8,17 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm ## [Unreleased] +## [0.2.0] - 2021-04-27 + +The primary change of this release is updating the dependency of `go.opentelemetry.io/otel*` packages from [`v0.19.0`][otel-v0.19.0] to [`v0.20.0`][otel-v0.20.0] and similarly `go.opentelemetry.io/contrib*` package from [`v0.19.0`][contrib-v0.19.0] to [`v0.20.0`][contrib-v0.20.0]. +This includes [a fix](https://github.com/open-telemetry/opentelemetry-go/pull/1830) in the Jaeger exporter. +This fix removes the duplicate batching that the exporter implemented. +Now the `BatchSpanProcessor` that `distro` configures by default will not experience an impedence mismatch with this duplicate batching. + ### Changed -- Update `go.opentelemetry.io/otel*` dependencies from `v0.19.0` to `v0.20.0`. +- Update `go.opentelemetry.io/otel*` dependencies from [`v0.19.0`][otel-v0.19.0] to [`v0.20.0`][otel-v0.20.0]. +- Update `go.opentelemetry.io/contrib*` dependencies from [`v0.19.0`][contrib-v0.19.0] to [`v0.20.0`][contrib-v0.20.0]. ## [0.1.0] - 2021-04-08 @@ -19,5 +27,12 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm - Add [`distro`](./distro) package providing functionality to quickly setup the OpenTelemetry Go implementation with useful Splunk defaults. - Add [`splunkhttp`](./instrumentation/net/http/splunkhttp) module providing additional Splunk specific instrumentation for `net/http`. -[Unreleased]: https://github.com/signalfx/splunk-otel-go/compare/v0.1.0...HEAD +[Unreleased]: https://github.com/signalfx/splunk-otel-go/compare/v0.2.0...HEAD +[0.2.0]: https://github.com/signalfx/splunk-otel-go/releases/tag/v0.2.0 [0.1.0]: https://github.com/signalfx/splunk-otel-go/releases/tag/v0.1.0 + +[otel-v0.20.0]: https://github.com/open-telemetry/opentelemetry-go/releases/tag/v0.20.0 +[otel-v0.19.0]: https://github.com/open-telemetry/opentelemetry-go/releases/tag/v0.19.0 + +[contrib-v0.20.0]: https://github.com/open-telemetry/opentelemetry-go-contrib/releases/tag/v0.20.0 +[contrib-v0.19.0]: https://github.com/open-telemetry/opentelemetry-go-contrib/releases/tag/v0.19.0 diff --git a/version.go b/version.go index 84cd7bf5e..d097d1902 100644 --- a/version.go +++ b/version.go @@ -16,5 +16,5 @@ package splunkotel // import "github.com/signalfx/splunk-otel-go" // Version is the current release version of splunk-otel-go in use. func Version() string { - return "0.1.0" + return "0.2.0" }