diff --git a/CHANGELOG.md b/CHANGELOG.md index 650d7f2e3..7351e4718 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ + +## [v0.86.3] - 2022-06-27 +### Bug Fixes +- **synthetics:** use *bool type to avoid removing false values + ## [v0.86.2] - 2022-06-23 ### Bug Fixes @@ -1339,7 +1344,8 @@ - extract paging implementation - rename packages for clarity, promote Config to the public package -[Unreleased]: https://github.com/newrelic/newrelic-client-go/compare/v0.86.2...HEAD +[Unreleased]: https://github.com/newrelic/newrelic-client-go/compare/v0.86.3...HEAD +[v0.86.3]: https://github.com/newrelic/newrelic-client-go/compare/v0.86.2...v0.86.3 [v0.86.2]: https://github.com/newrelic/newrelic-client-go/compare/v0.86.1...v0.86.2 [v0.86.1]: https://github.com/newrelic/newrelic-client-go/compare/v0.86.0...v0.86.1 [v0.86.0]: https://github.com/newrelic/newrelic-client-go/compare/v0.85.0...v0.86.0 diff --git a/internal/version/version.go b/internal/version/version.go index c498f71dd..5ec5cbab1 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.86.2" +const Version string = "0.86.3"