Skip to content

Commit 3f90115

Browse files
will@newrelic.comGitHub Enterprise
authored and
GitHub Enterprise
committed
Merge pull request #717 from will/3.0-versions
Update versions for 3.0 release
2 parents 71dbaef + 8202ac1 commit 3f90115

File tree

3 files changed

+12
-10
lines changed

3 files changed

+12
-10
lines changed

CHANGELOG.md

+10-8
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,26 @@
11
# ChangeLog
22

3+
## 3.0.0
4+
35
We are pleased to announce the release of Go Agent v3.0.0! This is a major release
4-
that includes some breaking changes that will simplify your future use of the Go
6+
that includes some breaking changes that will simplify your future use of the Go
57
Agent.
68

79
Please pay close attention to the list of Changes.
810

911
### Changes
1012

11-
* A full list of changes and a step by step checklist on how to upgrade can
13+
* A full list of changes and a step by step checklist on how to upgrade can
1214
be found in the [v3 Migration Guide](MIGRATION.md).
1315

1416
### New Features
1517

16-
* Support for Go Modules. Our Go agent integration packages support frameworks
17-
and libraries which are changing over time. With support for Go Modules, we
18-
are now able to release instrumentation packages for multiple versions of
19-
frameworks and libraries with a single agent release; and support operation
20-
of the Go agent in Go Modules environments. This affects naming of our
21-
integration packages, as described in the v3 Migration Guide (see under
18+
* Support for Go Modules. Our Go agent integration packages support frameworks
19+
and libraries which are changing over time. With support for Go Modules, we
20+
are now able to release instrumentation packages for multiple versions of
21+
frameworks and libraries with a single agent release; and support operation
22+
of the Go agent in Go Modules environments. This affects naming of our
23+
integration packages, as described in the v3 Migration Guide (see under
2224
"Changes" above).
2325

2426
* Detect and set hostnames based on Heroku dyno names. When deploying an

v3/newrelic/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88

99
const (
1010
// Version is the full string version of this Go Agent.
11-
Version = "3.0.0-dev3"
11+
Version = "3.0.0"
1212
)
1313

1414
func init() {

version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
const (
1010
major = "2"
1111
minor = "16"
12-
patch = "3"
12+
patch = "4"
1313

1414
// Version is the full string version of this Go Agent.
1515
Version = major + "." + minor + "." + patch

0 commit comments

Comments
 (0)