diff --git a/CHANGELOG.md b/CHANGELOG.md index 5709c2c6..673ffcf7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,23 @@ ## [Unreleased] + +## [v0.23.0] - 2020-05-01 +### Bug Fixes +- **build:** Github actions `make lint` for commit messages need full history +- **workloads:** Removing deprecated field `name` from `entitySearchQuery` + +### Documentation Updates +- **typegen:** Add a README for typegen + +### Features +- **events:** add alert events + +### Refactor +- **build:** Split up github actions a bit +- **typegen:** Split/refactor much of typegen internals + + ## [v0.22.0] - 2020-04-23 ### Bug Fixes @@ -511,7 +528,8 @@ - rename packages for clarity, promote Config to the public package -[Unreleased]: https://github.com/newrelic/newrelic-client-go/compare/v0.22.0...HEAD +[Unreleased]: https://github.com/newrelic/newrelic-client-go/compare/v0.23.0...HEAD +[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 [v0.21.0]: https://github.com/newrelic/newrelic-client-go/compare/v0.20.1...v0.21.0 diff --git a/internal/version/version.go b/internal/version/version.go index a79d5608..1fcf565f 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.22.0" +const Version string = "0.23.0"