diff --git a/CHANGELOG.md b/CHANGELOG.md index a25ca1b9f..dae60a15f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,8 +2,23 @@ ## [Unreleased] + +## [v0.15.0] - 2020-03-09 +### Bug Fixes +- **apm:** remove unused field +- **build:** Remove working dir config for CircleCI +- **http:** allow overriding of service name + +### Refactor +- **alert_conditions:** remove transient PolicyID from struct for consistency with API response +- **alerts:** use consistent types for incident timestamp fields +- **build:** Make the build system consistent with other projects +- **nrql_conditions:** remove transient PolicyID from struct for consistency with API response +- **plugins_conditions:** remove transient PolicyID from struct for consistency with API response + + -## [v0.14.0] - 2020-03-04 +## [v0.14.0] - 2020-03-05 ### Features - **newrelic:** add types for fields with well known values @@ -314,7 +329,8 @@ - rename packages for clarity, promote Config to the public package -[Unreleased]: https://github.com/newrelic/newrelic-client-go/compare/v0.14.0...HEAD +[Unreleased]: https://github.com/newrelic/newrelic-client-go/compare/v0.15.0...HEAD +[v0.15.0]: https://github.com/newrelic/newrelic-client-go/compare/v0.14.0...v0.15.0 [v0.14.0]: https://github.com/newrelic/newrelic-client-go/compare/v0.13.0...v0.14.0 [v0.13.0]: https://github.com/newrelic/newrelic-client-go/compare/v0.12.0...v0.13.0 [v0.12.0]: https://github.com/newrelic/newrelic-client-go/compare/v0.11.0...v0.12.0 diff --git a/internal/version/version.go b/internal/version/version.go index 12d334bbc..f5cdc11a0 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.14.0" +const Version string = "0.15.0"