diff --git a/CHANGELOG.md b/CHANGELOG.md index 8c3216f..d06a41f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,26 @@ # otel-config-go changelog +## v1.10.0 (2023-05-31) + +### 💥 Breaking Changes 💥 + +Packages for the Metrics API have been moved as the API implementation has stablized in OTel Go v1.16.0. + +- `go.opentelemetry.io/otel/metric/global` -> `go.opentelemetry.io/otel` +- `go.opentelemetry.io/otel/metric/instrument` -> `go.opentelemetry.io/otel/metric` + +Imports of these packages in your application will need to be updated. + +### Fixes + +Fix for the breaking change described above where `go.opentelemetry.io/otel/metric/global` cannot be found for otel-config-go. +The dependency update for otel packages in #40 below—thanks, [Justin Burnham](https://github.com/jburnham)!—includes an update to our import of the metrics package. + +### Maintenance + +- maint(deps): bump github.com/stretchr/testify from 1.8.2 to 1.8.4 (#44) [dependabot](https://github.com/apps/dependabot) +- maint(deps): bump go.opentelemetry.io/otel from 1.15.1 to 1.16.0 (#40) [@jburnham](https://github.com/jburnham) + ## v1.9.0 (2023-05-15) ### 💥 Breaking Changes 💥 diff --git a/otelconfig/version.go b/otelconfig/version.go index 136672b..fd27080 100644 --- a/otelconfig/version.go +++ b/otelconfig/version.go @@ -1,3 +1,3 @@ package otelconfig -const version = "1.9.0" +const version = "1.10.0"