From 31e5d7f17012be7ff5cc8fa6777161511ed6d9a4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 29 Oct 2024 15:38:05 -0700 Subject: [PATCH] chore(v2): release 2.24.2 (#252) :robot: I have created a release *beep* *boop* --- ## [2.24.2](https://github.com/launchdarkly/sdk-test-harness/compare/v2.24.1...v2.24.2) (2024-10-29) ### Bug Fixes * don't send 'null' when no prereqs present ([#251](https://github.com/launchdarkly/sdk-test-harness/issues/251)) ([6480865](https://github.com/launchdarkly/sdk-test-harness/commit/6480865eb7f7c51d3e57c243e10dc4392036ca3c)) * summary events should allow null default value in counter ([#253](https://github.com/launchdarkly/sdk-test-harness/issues/253)) ([9b4d98f](https://github.com/launchdarkly/sdk-test-harness/commit/9b4d98ffd06aece34a8def9ddb2ba574946e053a)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ main.go | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index fc80d13..3c3303b 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "2.24.1" + ".": "2.24.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index a0ab86d..ab04e2b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ All notable changes to the project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org). +## [2.24.2](https://github.com/launchdarkly/sdk-test-harness/compare/v2.24.1...v2.24.2) (2024-10-29) + + +### Bug Fixes + +* don't send 'null' when no prereqs present ([#251](https://github.com/launchdarkly/sdk-test-harness/issues/251)) ([6480865](https://github.com/launchdarkly/sdk-test-harness/commit/6480865eb7f7c51d3e57c243e10dc4392036ca3c)) +* summary events should allow null default value in counter ([#253](https://github.com/launchdarkly/sdk-test-harness/issues/253)) ([9b4d98f](https://github.com/launchdarkly/sdk-test-harness/commit/9b4d98ffd06aece34a8def9ddb2ba574946e053a)) + ## [2.24.1](https://github.com/launchdarkly/sdk-test-harness/compare/v2.24.0...v2.24.1) (2024-10-15) diff --git a/main.go b/main.go index fff31f9..ee2884b 100644 --- a/main.go +++ b/main.go @@ -17,7 +17,7 @@ import ( ) const defaultPort = 8111 -const versionString string = "2.24.1" // {{ x-release-please-version }} +const versionString string = "2.24.2" // {{ x-release-please-version }} func main() { fmt.Printf("sdk-test-harness v%s\n", strings.TrimSpace(versionString))