...

Source file src/go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc/version.go

Documentation: go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc

     1  // Copyright The OpenTelemetry Authors
     2  // SPDX-License-Identifier: Apache-2.0
     3  
     4  package otelgrpc // import "go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc"
     5  
     6  // Version is the current release version of the gRPC instrumentation.
     7  func Version() string {
     8  	return "0.50.0"
     9  	// This string is updated by the pre_release.sh script during release
    10  }
    11  
    12  // SemVersion is the semantic version to be supplied to tracer/meter creation.
    13  //
    14  // Deprecated: Use [Version] instead.
    15  func SemVersion() string {
    16  	return Version()
    17  }
    18  

View as plain text