Skip to content

Commit

Permalink
Merge pull request #141 from uptrace/release/v1.12.0
Browse files Browse the repository at this point in the history
Release/v1.12.0
  • Loading branch information
vmihailenco committed Jan 31, 2023
2 parents 6fa576d + f32052a commit 5d61eee
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 8 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## v1.12.0

- Updated OpenTelemetry to
[v1.12.0](https://github.com/open-telemetry/opentelemetry-go/releases/tag/v1.12.0).

## v1.11.0

- Updated OpenTelemetry to
Expand Down
2 changes: 1 addition & 1 deletion example/aws-elasticbeanstalk/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module test
go 1.18

require (
github.com/uptrace/uptrace-go v1.11.8
github.com/uptrace/uptrace-go v1.12.0
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.38.0
go.opentelemetry.io/otel/trace v1.12.0
)
Expand Down
2 changes: 1 addition & 1 deletion example/aws-lambda/function/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ require (
github.com/aws/aws-lambda-go v1.37.0
github.com/aws/aws-sdk-go-v2/config v1.18.10
github.com/aws/aws-sdk-go-v2/service/s3 v1.30.1
github.com/uptrace/uptrace-go v1.11.8
github.com/uptrace/uptrace-go v1.12.0
go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-lambda-go/otellambda v0.38.0
go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws v0.38.0
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.38.0
Expand Down
2 changes: 1 addition & 1 deletion example/basic/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ go 1.18
replace github.com/uptrace/uptrace-go => ../..

require (
github.com/uptrace/uptrace-go v1.11.8
github.com/uptrace/uptrace-go v1.12.0
go.opentelemetry.io/otel v1.12.0
)

Expand Down
2 changes: 1 addition & 1 deletion example/metrics/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ go 1.18
replace github.com/uptrace/uptrace-go => ../..

require (
github.com/uptrace/uptrace-go v1.11.8
github.com/uptrace/uptrace-go v1.12.0
go.opentelemetry.io/otel v1.12.0
go.opentelemetry.io/otel/metric v0.35.0
)
Expand Down
2 changes: 1 addition & 1 deletion example/otel-api/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ go 1.18
replace github.com/uptrace/uptrace-go => ../..

require (
github.com/uptrace/uptrace-go v1.11.8
github.com/uptrace/uptrace-go v1.12.0
go.opentelemetry.io/otel v1.12.0
go.opentelemetry.io/otel/trace v1.12.0
)
Expand Down
2 changes: 1 addition & 1 deletion example/tutorial/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ replace github.com/uptrace/uptrace-go => ../..

require (
github.com/uptrace/opentelemetry-go-extra/otelzap v0.1.18
github.com/uptrace/uptrace-go v1.11.8
github.com/uptrace/uptrace-go v1.12.0
go.opentelemetry.io/otel v1.12.0
go.uber.org/zap v1.24.0
)
Expand Down
2 changes: 1 addition & 1 deletion example/zerolog-vector/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ replace github.com/uptrace/uptrace-go => ../..

require (
github.com/rs/zerolog v1.29.0
github.com/uptrace/uptrace-go v1.11.8
github.com/uptrace/uptrace-go v1.12.0
go.opentelemetry.io/otel v1.12.0
gopkg.in/natefinch/lumberjack.v2 v2.0.0
)
Expand Down
2 changes: 1 addition & 1 deletion uptrace/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ package uptrace

// Version is the current release version.
func Version() string {
return "1.11.8"
return "1.12.0"
}

0 comments on commit 5d61eee

Please sign in to comment.