diff --git a/CHANGELOG.md b/CHANGELOG.md index 713c898..5fa48f7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Honeycomb OpenTelemetry Distro Changelog +## v0.8.1 (2023-09-22) + +### Maintenance + +- maint(deps): bump go.opentelemetry.io/otel/exporters/stdout/stdouttrace from 1.16.0 to 1.18.0 (#160) +- maint(deps): bump github.com/honeycombio/otel-config-go from 1.12.0 to 1.12.1 (#159) + ## v0.8.0 (2023-08-16) ### 💥 Breaking Changes 💥 diff --git a/README.md b/README.md index ab323b1..e95f37f 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ It makes getting started with OpenTelemetry and Honeycomb easier! Latest release built with: -- [OpenTelemetry v1.16.0/v0.39.0](https://github.com/open-telemetry/opentelemetry-go/releases/tag/v1.16.0) +- [OpenTelemetry v1.18.0/v0.41.0](https://github.com/open-telemetry/opentelemetry-go/releases/tag/v1.18.0) ## Why would I want to use this? diff --git a/honeycomb.go b/honeycomb.go index d9633fb..f60a1bf 100644 --- a/honeycomb.go +++ b/honeycomb.go @@ -32,7 +32,7 @@ const ( honeycombDistroVersionKey = "honeycomb.distro.version" honeycombDistroRuntimeVersionKey = "honeycomb.distro.runtime_version" otlpProtoVersionHeader = "x-otlp-version" - otlpProtoVersionValue = "0.19.0" + otlpProtoVersionValue = "1.0.0" ) func init() { diff --git a/version.go b/version.go index 0daf79b..71ff500 100644 --- a/version.go +++ b/version.go @@ -15,5 +15,5 @@ package honeycomb var ( - Version string = "0.8.0" + Version string = "0.8.1" )