version.go 170 B

12345678910
  1. package newrelic
  2. const (
  3. major = "2"
  4. minor = "2"
  5. patch = "0"
  6. // Version is the full string version of this Go Agent.
  7. Version = major + "." + minor + "." + patch
  8. )