Skip to content

Commit

Permalink
Prepare for v0.31.0 and v1.7.0 (#400)
Browse files Browse the repository at this point in the history
* prepare for v0.31.0 and v1.7.0

* fix replace directive in example
  • Loading branch information
dashpole committed May 20, 2022
1 parent ce78357 commit 7472089
Show file tree
Hide file tree
Showing 11 changed files with 24 additions and 24 deletions.
6 changes: 3 additions & 3 deletions e2e-test-server/go.mod
Expand Up @@ -5,7 +5,7 @@ go 1.17
require (
cloud.google.com/go/iam v0.1.1 // indirect
cloud.google.com/go/pubsub v1.19.0
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/trace v1.6.1
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/trace v1.7.0
go.opentelemetry.io/otel v1.6.3
go.opentelemetry.io/otel/sdk v1.6.2
go.opentelemetry.io/otel/trace v1.6.3
Expand All @@ -14,13 +14,13 @@ require (

require (
cloud.google.com/go/compute v1.6.1
github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v0.0.0-20220518135511-55ba58d44b33
github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v0.31.0
)

require (
cloud.google.com/go v0.100.2 // indirect
cloud.google.com/go/trace v1.2.0 // indirect
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.30.1 // indirect
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.31.0 // indirect
github.com/go-logr/logr v1.2.3 // indirect
github.com/go-logr/stdr v1.2.2 // indirect
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
Expand Down
2 changes: 1 addition & 1 deletion example/metric/go.mod
Expand Up @@ -5,7 +5,7 @@ go 1.17
replace github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric => ../../exporter/metric

require (
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric v0.30.1
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric v0.31.0
go.opentelemetry.io/otel v1.6.2
go.opentelemetry.io/otel/metric v0.28.0
go.opentelemetry.io/otel/sdk v1.6.2
Expand Down
8 changes: 5 additions & 3 deletions example/trace/http/go.mod
Expand Up @@ -6,9 +6,11 @@ replace github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/trac

replace github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping => ../../../internal/resourcemapping

replace github.com/GoogleCloudPlatform/opentelemetry-operations-go => ../../..

require (
github.com/GoogleCloudPlatform/opentelemetry-operations-go v1.5.1
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/trace v1.6.1
github.com/GoogleCloudPlatform/opentelemetry-operations-go v0.31.0
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/trace v1.7.0
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.31.0
go.opentelemetry.io/otel v1.6.3
go.opentelemetry.io/otel/sdk v1.6.2
Expand All @@ -18,7 +20,7 @@ require (
require (
cloud.google.com/go/compute v1.5.0 // indirect
cloud.google.com/go/trace v1.2.0 // indirect
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.30.1 // indirect
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.31.0 // indirect
github.com/felixge/httpsnoop v1.0.2 // indirect
github.com/go-logr/logr v1.2.3 // indirect
github.com/go-logr/stdr v1.2.2 // indirect
Expand Down
2 changes: 0 additions & 2 deletions example/trace/http/go.sum
Expand Up @@ -54,8 +54,6 @@ cloud.google.com/go/trace v1.2.0/go.mod h1:Wc8y/uYyOhPy12KEnXG9XGrvfMz5F5SrYecQl
dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU=
github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU=
github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo=
github.com/GoogleCloudPlatform/opentelemetry-operations-go v1.5.1 h1:ehrYJQI0mFAed1smB9A4p59pmlNdesMrpI0b5EuHZ+8=
github.com/GoogleCloudPlatform/opentelemetry-operations-go v1.5.1/go.mod h1:lkyoCnkgX2rxsK/qn0l6POhbrqSCuRms1O5UQLlTHvg=
github.com/OneOfOne/xxhash v1.2.2/go.mod h1:HSdplMjZKSmBqAxg5vPj2TmRDmfkzw+cTzAElWljhcU=
github.com/antihax/optional v1.0.0/go.mod h1:uupD/76wgC+ih3iEmQUL+0Ugr19nfwCT1kdvxnR2qWY=
github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU=
Expand Down
4 changes: 2 additions & 2 deletions exporter/collector/go.mod
Expand Up @@ -4,7 +4,7 @@ go 1.17

require (
cloud.google.com/go/logging v1.4.2
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/trace v1.6.1
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/trace v1.7.0
github.com/census-instrumentation/opencensus-proto v0.3.0
github.com/stretchr/testify v1.7.1
go.opencensus.io v0.23.0
Expand All @@ -21,7 +21,7 @@ require (
require (
cloud.google.com/go/monitoring v1.4.0
cloud.google.com/go/trace v1.2.0
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.30.1
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.31.0
github.com/benbjohnson/clock v1.3.0 // indirect
github.com/google/go-cmp v0.5.7
go.opentelemetry.io/collector/pdata v0.51.0
Expand Down
6 changes: 3 additions & 3 deletions exporter/collector/googlemanagedprometheus/go.mod
Expand Up @@ -3,7 +3,7 @@ module github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/colle
go 1.17

require (
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/collector v0.30.1
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/collector v0.31.0
github.com/stretchr/testify v1.7.1
go.opentelemetry.io/collector v0.51.0
go.opentelemetry.io/collector/pdata v0.51.0
Expand All @@ -17,8 +17,8 @@ require (
cloud.google.com/go/logging v1.4.2 // indirect
cloud.google.com/go/monitoring v1.4.0 // indirect
cloud.google.com/go/trace v1.2.0 // indirect
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/trace v1.6.1 // indirect
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.30.1 // indirect
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/trace v1.7.0 // indirect
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.31.0 // indirect
github.com/cenkalti/backoff/v4 v4.1.3 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/go-logr/logr v1.2.3 // indirect
Expand Down
8 changes: 4 additions & 4 deletions exporter/collector/integrationtest/go.mod
Expand Up @@ -4,8 +4,8 @@ go 1.17

require (
contrib.go.opencensus.io/exporter/stackdriver v0.13.11
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/collector v0.30.1
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/collector/googlemanagedprometheus v0.30.1
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/collector v0.31.0
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/collector/googlemanagedprometheus v0.31.0
github.com/google/go-cmp v0.5.7
github.com/stretchr/testify v1.7.1
go.opencensus.io v0.23.0
Expand All @@ -24,8 +24,8 @@ require (
cloud.google.com/go/logging v1.4.2 // indirect
cloud.google.com/go/monitoring v1.4.0 // indirect
cloud.google.com/go/trace v1.2.0 // indirect
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/trace v1.6.1 // indirect
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.30.1 // indirect
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/trace v1.7.0 // indirect
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.31.0 // indirect
github.com/aws/aws-sdk-go v1.42.49 // indirect
github.com/cenkalti/backoff/v4 v4.1.3 // indirect
github.com/census-instrumentation/opencensus-proto v0.3.0 // indirect
Expand Down
2 changes: 1 addition & 1 deletion exporter/metric/version.go
Expand Up @@ -17,5 +17,5 @@ package metric
// Version is the current release version of the OpenTelemetry
// Operations Metric Exporter in use.
func Version() string {
return "0.30.1"
return "0.31.0"
}
2 changes: 1 addition & 1 deletion exporter/trace/go.mod
Expand Up @@ -21,7 +21,7 @@ require (
google.golang.org/protobuf v1.28.0
)

require github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.30.1
require github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.31.0

require (
cloud.google.com/go/compute v1.5.0 // indirect
Expand Down
2 changes: 1 addition & 1 deletion exporter/trace/version.go
Expand Up @@ -17,5 +17,5 @@ package trace
// Version is the current release version of the OpenTelemetry
// Operations Trace Exporter in use.
func Version() string {
return "1.6.1"
return "1.7.0"
}
6 changes: 3 additions & 3 deletions tools/release.go
Expand Up @@ -29,8 +29,8 @@ import (
const (
prefix = "github.com/GoogleCloudPlatform/opentelemetry-operations-go"

stable = "1.6.1"
unstable = "0.30.1"
stable = "1.7.0"
unstable = "0.31.0"
)

var versions = map[string]string{
Expand All @@ -46,7 +46,7 @@ var versions = map[string]string{

"internal/resourcemapping/": unstable,

"detectors/gcp": unstable,
"detectors/gcp/": unstable,
}

type module string
Expand Down

0 comments on commit 7472089

Please sign in to comment.