diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 3c3303b..7de9824 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "2.24.2" + ".": "2.25.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index ab04e2b..24c1633 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ All notable changes to the project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org). +## [2.25.0](https://github.com/launchdarkly/sdk-test-harness/compare/v2.24.2...v2.25.0) (2024-10-31) + + +### Features + +* Introduce persistent store testing support ([#254](https://github.com/launchdarkly/sdk-test-harness/issues/254)) ([cd03f57](https://github.com/launchdarkly/sdk-test-harness/commit/cd03f57382f6e1a16d1aa289aeaf5e614557d63d)) + ## [2.24.2](https://github.com/launchdarkly/sdk-test-harness/compare/v2.24.1...v2.24.2) (2024-10-29) diff --git a/main.go b/main.go index 6aec458..061a2b1 100644 --- a/main.go +++ b/main.go @@ -18,7 +18,7 @@ import ( ) const defaultPort = 8111 -const versionString string = "2.24.2" // {{ x-release-please-version }} +const versionString string = "2.25.0" // {{ x-release-please-version }} func main() { fmt.Printf("sdk-test-harness v%s\n", strings.TrimSpace(versionString))