Skip to content

Commit

Permalink
Prepare experimental-samplers for version v0.2.0
Browse files Browse the repository at this point in the history
Signed-off-by: Anthony J Mirabella <a9@aneurysm9.com>
  • Loading branch information
Aneurysm9 committed Apr 1, 2022
1 parent b1b1662 commit ea946b3
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 11 deletions.
6 changes: 3 additions & 3 deletions samplers/aws/xray/go.mod
Expand Up @@ -6,8 +6,8 @@ require (
github.com/go-logr/logr v1.2.3
github.com/go-logr/stdr v1.2.2
github.com/stretchr/testify v1.7.1
go.opentelemetry.io/otel v1.6.0
go.opentelemetry.io/otel/sdk v1.6.0
go.opentelemetry.io/otel/trace v1.6.0
go.opentelemetry.io/otel v1.6.1
go.opentelemetry.io/otel/sdk v1.6.1
go.opentelemetry.io/otel/trace v1.6.1
golang.org/x/sys v0.0.0-20210510120138-977fb7262007 // indirect
)
12 changes: 6 additions & 6 deletions samplers/aws/xray/go.sum
Expand Up @@ -12,12 +12,12 @@ github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZN
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
github.com/stretchr/testify v1.7.1 h1:5TQK59W5E3v0r2duFAb7P95B6hEeOyEnHRa8MjYSMTY=
github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
go.opentelemetry.io/otel v1.6.0 h1:YV6GkGe/Ag2PKsm4rjlqdSNs0w0A5ZzxeGkxhx1T+t4=
go.opentelemetry.io/otel v1.6.0/go.mod h1:bfJD2DZVw0LBxghOTlgnlI0CV3hLDu9XF/QKOUXMTQQ=
go.opentelemetry.io/otel/sdk v1.6.0 h1:JoriAoiNENuxxIQApR1O0k2h1Md5QegZhbentcRJpWk=
go.opentelemetry.io/otel/sdk v1.6.0/go.mod h1:PjLRUfDsoPy0zl7yrDGSUqjj43tL7rEtFdCEiGlxXRM=
go.opentelemetry.io/otel/trace v1.6.0 h1:NDzPermp9ISkhxIaJXjBTi2O60xOSHDHP/EezjOL2wo=
go.opentelemetry.io/otel/trace v1.6.0/go.mod h1:qs7BrU5cZ8dXQHBGxHMOxwME/27YH2qEp4/+tZLLwJE=
go.opentelemetry.io/otel v1.6.1 h1:6r1YrcTenBvYa1x491d0GGpTVBsNECmrc/K6b+zDeis=
go.opentelemetry.io/otel v1.6.1/go.mod h1:blzUabWHkX6LJewxvadmzafgh/wnvBSDBdOuwkAtrWQ=
go.opentelemetry.io/otel/sdk v1.6.1 h1:ZmcNyMhcuAYIb/Nr6QhBPTMopMTbov/47wHt1gibkoY=
go.opentelemetry.io/otel/sdk v1.6.1/go.mod h1:IVYrddmFZ+eJqu2k38qD3WezFR2pymCzm8tdxyh3R4E=
go.opentelemetry.io/otel/trace v1.6.1 h1:f8c93l5tboBYZna1nWk0W9DYyMzJXDWdZcJZ0Kb400U=
go.opentelemetry.io/otel/trace v1.6.1/go.mod h1:RkFRM1m0puWIq10oxImnGEduNBzxiN7TXluRBtE+5j0=
golang.org/x/sys v0.0.0-20210423185535-09eb48e85fd7/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20210510120138-977fb7262007 h1:gG67DSER+11cZvqIMb8S8bt0vZtiN6xWYARwirrOSfE=
golang.org/x/sys v0.0.0-20210510120138-977fb7262007/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
Expand Down
26 changes: 26 additions & 0 deletions samplers/aws/xray/version.go
@@ -0,0 +1,26 @@
// Copyright The OpenTelemetry Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

package xray // import "go.opentelemetry.io/contrib/samplers/aws/xray"

// Version is the current release version of the AWS X-Ray remote sampler.
func Version() string {
return "0.2.0"
// This string is updated by the pre_release.sh script during release
}

// SemVersion is the semantic version to be supplied to tracer/meter creation.
func SemVersion() string {
return "semver:" + Version()
}
2 changes: 1 addition & 1 deletion samplers/jaegerremote/example/go.mod
Expand Up @@ -4,7 +4,7 @@ go 1.16

require (
github.com/davecgh/go-spew v1.1.1
go.opentelemetry.io/contrib/samplers/jaegerremote v0.1.0
go.opentelemetry.io/contrib/samplers/jaegerremote v0.2.0
go.opentelemetry.io/otel v1.6.1
go.opentelemetry.io/otel/exporters/stdout/stdouttrace v1.6.1
go.opentelemetry.io/otel/sdk v1.6.1
Expand Down
2 changes: 1 addition & 1 deletion samplers/jaegerremote/version.go
Expand Up @@ -16,7 +16,7 @@ package jaegerremote // import "go.opentelemetry.io/contrib/samplers/jaegerremot

// Version is the current release version of the Jaeger remote sampler.
func Version() string {
return "0.30.0"
return "0.2.0"
// This string is updated by the pre_release.sh script during release
}

Expand Down

0 comments on commit ea946b3

Please sign in to comment.