Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

fix(bigtable): use internal.Version that is auto-updated for UA #5679

Merged
merged 1 commit into from Feb 22, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 3 additions & 1 deletion bigtable/doc.go
Expand Up @@ -99,6 +99,8 @@ that have already been processed.
*/
package bigtable // import "cloud.google.com/go/bigtable"

import "cloud.google.com/go/bigtable/internal"

// Scope constants for authentication credentials. These should be used when
// using credential creation functions such as oauth.NewServiceAccountFromFile.
const (
Expand All @@ -118,7 +120,7 @@ const (

// clientUserAgent identifies the version of this package.
// It should be the same as https://pkg.go.dev/cloud.google.com/go/bigtable.
const clientUserAgent = "cbt-go/v1.6.0"
var clientUserAgent = "cbt-go/v" + internal.Version

// resourcePrefixHeader is the name of the metadata header used to indicate
// the resource being operated on.
Expand Down