Skip to content

Commit

Permalink
rel: prepare v1.10.0 (#46)
Browse files Browse the repository at this point in the history
Bumps minor with a Breaking Changes warning in the changelog about the
need to update imports for the metrics API packages as they go from
experimental to stable. NOTE: _only_ the metrics _API_ has gone stable;
SDK concerns like the exporter are still experimental v0.x.y.
  • Loading branch information
robbkidd authored May 31, 2023
1 parent 77f202d commit 9731d1c
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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 💥
Expand Down
2 changes: 1 addition & 1 deletion otelconfig/version.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package otelconfig

const version = "1.9.0"
const version = "1.10.0"

0 comments on commit 9731d1c

Please sign in to comment.