You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
terraform/vendor/github.com/newrelic/go-agent/version.go

11 lines
170 B

package newrelic
const (
major = "1"
minor = "5"
patch = "0"
// Version is the full string version of this Go Agent.
Version = major + "." + minor + "." + patch
)