Skip to content

Commit

Permalink
Merge pull request #144 from uptrace/release/v1.13.0
Browse files Browse the repository at this point in the history
Release/v1.13.0
  • Loading branch information
vmihailenco committed Feb 9, 2023
2 parents 2e77cb1 + e77eddd commit 318cff7
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
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.12.0
github.com/uptrace/uptrace-go v1.13.0
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.39.0
go.opentelemetry.io/otel/trace v1.13.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.12
github.com/aws/aws-sdk-go-v2/service/s3 v1.30.2
github.com/uptrace/uptrace-go v1.12.0
github.com/uptrace/uptrace-go v1.13.0
go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-lambda-go/otellambda v0.39.0
go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws v0.39.0
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.39.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.12.0
github.com/uptrace/uptrace-go v1.13.0
go.opentelemetry.io/otel v1.13.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.12.0
github.com/uptrace/uptrace-go v1.13.0
go.opentelemetry.io/otel v1.13.0
go.opentelemetry.io/otel/metric v0.36.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.12.0
github.com/uptrace/uptrace-go v1.13.0
go.opentelemetry.io/otel v1.13.0
go.opentelemetry.io/otel/trace v1.13.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.20
github.com/uptrace/uptrace-go v1.12.0
github.com/uptrace/uptrace-go v1.13.0
go.opentelemetry.io/otel v1.13.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.12.0
github.com/uptrace/uptrace-go v1.13.0
go.opentelemetry.io/otel v1.13.0
gopkg.in/natefinch/lumberjack.v2 v2.2.1
)
Expand Down
4 changes: 2 additions & 2 deletions scripts/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ PACKAGE_DIRS=$(find . -mindepth 1 -type f -name 'go.mod' -exec dirname {} \; \

for dir in $PACKAGE_DIRS
do
printf "${dir}: go get -u && go mod tidy\n"
(cd ./${dir} && go get -u ./... && go mod tidy -compat=1.18)
printf "${dir}: go mod tidy\n"
(cd ./${dir} && go mod tidy -compat=1.18)
done

for dir in $PACKAGE_DIRS
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.12.0"
return "1.13.0"
}

0 comments on commit 318cff7

Please sign in to comment.