2018-07-12 05:28:38 +00:00
|
|
|
package pipeline
|
|
|
|
|
|
|
|
const (
|
|
|
|
// UserAgent is the string to be used in the user agent string when making requests.
|
|
|
|
UserAgent = "azure-pipeline-go/" + Version
|
|
|
|
|
|
|
|
// Version is the semantic version (see http://semver.org) of the pipeline package.
|
2019-08-26 17:00:17 +00:00
|
|
|
Version = "0.2.1"
|
2018-07-12 05:28:38 +00:00
|
|
|
)
|