diff --git a/.release-please-manifest.json b/.release-please-manifest.json index d220488..fdd9c91 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "2.32.1" + ".": "2.33.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a14999..40e6c58 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.33.0](https://github.com/launchdarkly/sdk-test-harness/compare/v2.32.1...v2.33.0) (2025-10-31) + + +### Features + +* Add test count summary to display total and skipped tests ([#307](https://github.com/launchdarkly/sdk-test-harness/issues/307)) ([7662be6](https://github.com/launchdarkly/sdk-test-harness/commit/7662be6e1ccf7102f1478a8a912dfcad740246f1)) + ## [2.32.1](https://github.com/launchdarkly/sdk-test-harness/compare/v2.32.0...v2.32.1) (2025-10-17) diff --git a/main.go b/main.go index b90d04c..400361d 100644 --- a/main.go +++ b/main.go @@ -18,7 +18,7 @@ import ( ) const defaultPort = 8111 -const versionString string = "2.32.1" // {{ x-release-please-version }} +const versionString string = "2.33.0" // {{ x-release-please-version }} func main() { fmt.Printf("sdk-test-harness v%s\n", strings.TrimSpace(versionString))