diff --git a/CHANGELOG.md b/CHANGELOG.md index bd399fca..e5e22c57 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ ## [Unreleased] + +## [v0.7.1] - 2020-01-24 +### Bug Fixes +- **alerts:** handle more complex JSON structures in headers and/or payload +- **logging:** use global methods for the default logger rather than a logrus instance + + ## [v0.7.0] - 2020-01-23 ### Features @@ -147,7 +154,8 @@ - get TestListApplications passing -[Unreleased]: https://github.com/newrelic/newrelic-client-go/compare/v0.7.0...HEAD +[Unreleased]: https://github.com/newrelic/newrelic-client-go/compare/v0.7.1...HEAD +[v0.7.1]: https://github.com/newrelic/newrelic-client-go/compare/v0.7.0...v0.7.1 [v0.7.0]: https://github.com/newrelic/newrelic-client-go/compare/v0.6.0...v0.7.0 [v0.6.0]: https://github.com/newrelic/newrelic-client-go/compare/v0.5.1...v0.6.0 [v0.5.1]: https://github.com/newrelic/newrelic-client-go/compare/v0.5.0...v0.5.1 diff --git a/internal/version/version.go b/internal/version/version.go index e67493a1..c0246e20 100644 --- a/internal/version/version.go +++ b/internal/version/version.go @@ -1,4 +1,4 @@ package version // Version of this library -const Version string = "0.7.0" +const Version string = "0.7.1"