diff --git a/CHANGELOG.md b/CHANGELOG.md
index 24ff3536b..7a5a911f9 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,10 @@
+
+## [v2.43.0] - 2024-08-12
+### Features
+- **alerts:** add support for `ignoreOnExpectedTermination` in `expiration` to NRQL alert conditions ([#1180](https://github.com/newrelic/newrelic-client-go/issues/1180))
+- **alerts:** add support for `titleTemplate` to NRQL alert conditions ([#1141](https://github.com/newrelic/newrelic-client-go/issues/1141))
+- **automation:** report when NerdGraph API endpoints change signatures (i.e. breaking changes)
+
## [v2.42.1] - 2024-08-07
### Bug Fixes
@@ -1863,7 +1870,8 @@
- extract paging implementation
- rename packages for clarity, promote Config to the public package
-[Unreleased]: https://github.com/newrelic/newrelic-client-go/compare/v2.42.1...HEAD
+[Unreleased]: https://github.com/newrelic/newrelic-client-go/compare/v2.43.0...HEAD
+[v2.43.0]: https://github.com/newrelic/newrelic-client-go/compare/v2.42.1...v2.43.0
[v2.42.1]: https://github.com/newrelic/newrelic-client-go/compare/v2.42.0...v2.42.1
[v2.42.0]: https://github.com/newrelic/newrelic-client-go/compare/v2.41.3...v2.42.0
[v2.41.3]: https://github.com/newrelic/newrelic-client-go/compare/v2.41.2...v2.41.3
diff --git a/internal/version/version.go b/internal/version/version.go
index 3f39b2edf..173291420 100644
--- a/internal/version/version.go
+++ b/internal/version/version.go
@@ -1,4 +1,4 @@
package version
// Version of this library
-const Version string = "2.42.1"
+const Version string = "2.43.0"