Skip to content

Commit

Permalink
Merge pull request #65 from riandyrn/pre_release/v0.10.0
Browse files Browse the repository at this point in the history
Release v0.10.0
  • Loading branch information
ilhamsyahids authored Sep 17, 2024
2 parents 9a71ca9 + 1d9bcad commit c2de3c7
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 4 deletions.
26 changes: 25 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,26 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm

## [Unreleased]

## [0.10.0] - 2024-09-17

### Added

- Add `WithTraceResponseHeaders` option to include trace information in response headers, this option replaces the deprecated `WithTraceIDResponseHeader` option. ([#62])

### Changed

- Upgrade `go.opentelemetry.io/otel`, `go.opentelemetry.io/otel/sdk`, & `go.opentelemetry.io/otel/trace` to `v1.30.0`. ([#64])
- Set the go versions for testing in both `Makefile` & `compatibility-test.yml` to `1.22` & `1.23`. ([#64])

### Fixed

- Fix Gobrew installation in CI pipeline. ([#63])

### Removed

- Drop support for Go 1.21. ([#64])
- Deprecated `WithTraceIDResponseHeader` option, use `WithTraceResponseHeaders` instead. ([#62])

## [0.9.0] - 2024-07-06

### Changed
Expand Down Expand Up @@ -174,6 +194,9 @@ It contains instrumentation for trace and depends on:
- Example code for a basic usage.
- Apache-2.0 license.

[#64]: https://github.com/riandyrn/otelchi/pull/64
[#63]: https://github.com/riandyrn/otelchi/pull/63
[#62]: https://github.com/riandyrn/otelchi/pull/62
[#49]: https://github.com/riandyrn/otelchi/pull/49
[#47]: https://github.com/riandyrn/otelchi/pull/47
[#43]: https://github.com/riandyrn/otelchi/pull/43
Expand All @@ -196,7 +219,8 @@ It contains instrumentation for trace and depends on:
[#2]: https://github.com/riandyrn/otelchi/pull/2
[#1]: https://github.com/riandyrn/otelchi/pull/1

[Unreleased]: https://github.com/riandyrn/otelchi/compare/v0.9.0...HEAD
[Unreleased]: https://github.com/riandyrn/otelchi/compare/v0.10.0...HEAD
[0.10.0]: https://github.com/riandyrn/otelchi/releases/tag/v0.10.0
[0.9.0]: https://github.com/riandyrn/otelchi/releases/tag/v0.9.0
[0.8.0]: https://github.com/riandyrn/otelchi/releases/tag/v0.8.0
[0.7.0]: https://github.com/riandyrn/otelchi/releases/tag/v0.7.0
Expand Down
2 changes: 1 addition & 1 deletion examples/basic/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ replace github.com/riandyrn/otelchi => ../../

require (
github.com/go-chi/chi/v5 v5.1.0
github.com/riandyrn/otelchi v0.9.0
github.com/riandyrn/otelchi v0.10.0
go.opentelemetry.io/otel v1.30.0
go.opentelemetry.io/otel/exporters/stdout/stdouttrace v1.30.0
go.opentelemetry.io/otel/sdk v1.30.0
Expand Down
2 changes: 1 addition & 1 deletion examples/multi-services/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ replace github.com/riandyrn/otelchi => ../../

require (
github.com/go-chi/chi/v5 v5.1.0
github.com/riandyrn/otelchi v0.9.0
github.com/riandyrn/otelchi v0.10.0
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.53.0
go.opentelemetry.io/otel v1.30.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.30.0
Expand Down
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ package otelchi

// Version is the current release version of otelchi in use.
func Version() string {
return "0.9.0"
return "0.10.0"
}

0 comments on commit c2de3c7

Please sign in to comment.