Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

chore: release v1.24.0 (release.sh) #166

Merged
merged 1 commit into from
Mar 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion example/aws-elasticbeanstalk/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ toolchain go1.22.1
replace github.com/uptrace/uptrace-go => ../..

require (
github.com/uptrace/uptrace-go v1.23.1
github.com/uptrace/uptrace-go v1.24.0
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0
go.opentelemetry.io/otel/trace v1.24.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 @@ -10,7 +10,7 @@ require (
github.com/aws/aws-lambda-go v1.46.0
github.com/aws/aws-sdk-go-v2/config v1.27.8
github.com/aws/aws-sdk-go-v2/service/s3 v1.53.0
github.com/uptrace/uptrace-go v1.23.1
github.com/uptrace/uptrace-go v1.24.0
go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-lambda-go/otellambda v0.49.0
go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws v0.49.0
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.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 @@ -7,7 +7,7 @@ toolchain go1.22.1
replace github.com/uptrace/uptrace-go => ../..

require (
github.com/uptrace/uptrace-go v1.23.1
github.com/uptrace/uptrace-go v1.24.0
go.opentelemetry.io/otel v1.24.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 @@ -7,7 +7,7 @@ toolchain go1.22.1
replace github.com/uptrace/uptrace-go => ../..

require (
github.com/uptrace/uptrace-go v1.23.1
github.com/uptrace/uptrace-go v1.24.0
go.opentelemetry.io/otel v1.24.0
go.opentelemetry.io/otel/metric v1.24.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 @@ -7,7 +7,7 @@ toolchain go1.22.1
replace github.com/uptrace/uptrace-go => ../..

require (
github.com/uptrace/uptrace-go v1.23.1
github.com/uptrace/uptrace-go v1.24.0
go.opentelemetry.io/otel v1.24.0
go.opentelemetry.io/otel/trace v1.24.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 @@ -8,7 +8,7 @@ replace github.com/uptrace/uptrace-go => ../..

require (
github.com/uptrace/opentelemetry-go-extra/otelzap v0.2.4
github.com/uptrace/uptrace-go v1.23.1
github.com/uptrace/uptrace-go v1.24.0
go.opentelemetry.io/otel v1.24.0
go.uber.org/zap v1.27.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 @@ -8,7 +8,7 @@ replace github.com/uptrace/uptrace-go => ../..

require (
github.com/rs/zerolog v1.32.0
github.com/uptrace/uptrace-go v1.23.1
github.com/uptrace/uptrace-go v1.24.0
go.opentelemetry.io/otel v1.24.0
gopkg.in/natefinch/lumberjack.v2 v2.2.1
)
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.23.1"
return "1.24.0"
}
Loading