version.go 263 B

123456789
  1. package pipeline
  2. const (
  3. // UserAgent is the string to be used in the user agent string when making requests.
  4. UserAgent = "azure-pipeline-go/" + Version
  5. // Version is the semantic version (see http://semver.org) of the pipeline package.
  6. Version = "0.2.1"
  7. )