version.go raw

   1  //go:build go1.18
   2  // +build go1.18
   3  
   4  // Copyright (c) Microsoft Corporation. All rights reserved.
   5  // Licensed under the MIT License.
   6  
   7  package azidentity
   8  
   9  const (
  10  	// UserAgent is the string to be used in the user agent string when making requests.
  11  	component = "azidentity"
  12  
  13  	// module is the fully qualified name of the module used in telemetry and distributed tracing.
  14  	module = "github.com/Azure/azure-sdk-for-go/sdk/" + component
  15  
  16  	// Version is the semantic version (see http://semver.org) of this module.
  17  	version = "v1.13.1"
  18  )
  19