File tree 3 files changed +12
-10
lines changed
3 files changed +12
-10
lines changed Original file line number Diff line number Diff line change 1
1
# ChangeLog
2
2
3
+ ## 3.0.0
4
+
3
5
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
5
7
Agent.
6
8
7
9
Please pay close attention to the list of Changes.
8
10
9
11
### Changes
10
12
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
12
14
be found in the [ v3 Migration Guide] ( MIGRATION.md ) .
13
15
14
16
### New Features
15
17
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
22
24
"Changes" above).
23
25
24
26
* Detect and set hostnames based on Heroku dyno names. When deploying an
Original file line number Diff line number Diff line change 8
8
9
9
const (
10
10
// Version is the full string version of this Go Agent.
11
- Version = "3.0.0-dev3 "
11
+ Version = "3.0.0"
12
12
)
13
13
14
14
func init () {
Original file line number Diff line number Diff line change 9
9
const (
10
10
major = "2"
11
11
minor = "16"
12
- patch = "3 "
12
+ patch = "4 "
13
13
14
14
// Version is the full string version of this Go Agent.
15
15
Version = major + "." + minor + "." + patch
You can’t perform that action at this time.
0 commit comments