diff --git a/CHANGELOG.md b/CHANGELOG.md index 673ffcf7..a3dd0085 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ ## [Unreleased] + +## [v0.23.1] - 2020-05-04 +### Bug Fixes +- **alerts:** Alerts paging was incorrectly generating URLs + + ## [v0.23.0] - 2020-05-01 ### Bug Fixes @@ -528,7 +534,8 @@ - rename packages for clarity, promote Config to the public package -[Unreleased]: https://github.com/newrelic/newrelic-client-go/compare/v0.23.0...HEAD +[Unreleased]: https://github.com/newrelic/newrelic-client-go/compare/v0.23.1...HEAD +[v0.23.1]: https://github.com/newrelic/newrelic-client-go/compare/v0.23.0...v0.23.1 [v0.23.0]: https://github.com/newrelic/newrelic-client-go/compare/v0.22.0...v0.23.0 [v0.22.0]: https://github.com/newrelic/newrelic-client-go/compare/v0.21.1...v0.22.0 [v0.21.1]: https://github.com/newrelic/newrelic-client-go/compare/v0.21.0...v0.21.1 diff --git a/internal/version/version.go b/internal/version/version.go index 1fcf565f..0b83aed5 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.23.0" +const Version string = "0.23.1"