From 2e750f2d74901e56a46a32f6165eb9f7261a22d4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 28 Aug 2023 22:03:43 +0000 Subject: [PATCH] chore: release main --- .release-please-manifest.json | 6 +++--- libs/client-sdk/CHANGELOG.md | 15 +++++++++++++++ libs/client-sdk/CMakeLists.txt | 2 +- .../include/launchdarkly/client_side/client.hpp | 2 +- libs/client-sdk/package.json | 6 +++--- libs/client-sdk/tests/client_c_bindings_test.cpp | 2 +- libs/client-sdk/tests/client_test.cpp | 2 +- libs/common/CHANGELOG.md | 7 +++++++ libs/common/package.json | 2 +- libs/internal/CHANGELOG.md | 6 ++++++ libs/internal/package.json | 4 ++-- 11 files changed, 41 insertions(+), 13 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 0eb5715bc..e23b6b2df 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,6 +1,6 @@ { - "libs/client-sdk": "3.0.4", + "libs/client-sdk": "3.0.5", "libs/server-sent-events": "0.1.1", - "libs/common": "0.3.3", - "libs/internal": "0.1.6" + "libs/common": "0.3.4", + "libs/internal": "0.1.7" } diff --git a/libs/client-sdk/CHANGELOG.md b/libs/client-sdk/CHANGELOG.md index 847df7834..f32ddb261 100644 --- a/libs/client-sdk/CHANGELOG.md +++ b/libs/client-sdk/CHANGELOG.md @@ -2,6 +2,21 @@ All notable changes to the LaunchDarkly Client-Side SDK for C/C++ will be documented in this file. This project adheres to [Semantic Versioning](https://semver.org). +## [3.0.5](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-client-v3.0.4...launchdarkly-cpp-client-v3.0.5) (2023-08-28) + + +### Bug Fixes + +* initialization of LDFlagListener ([#218](https://github.com/launchdarkly/cpp-sdks/issues/218)) ([6c263dd](https://github.com/launchdarkly/cpp-sdks/commit/6c263dd9110e4da188a56cabc54f783190e1114c)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * launchdarkly-cpp-internal bumped from 0.1.6 to 0.1.7 + * launchdarkly-cpp-common bumped from 0.3.3 to 0.3.4 + ## [3.0.4](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-client-v3.0.3...launchdarkly-cpp-client-v3.0.4) (2023-08-16) ### Bug Fixes diff --git a/libs/client-sdk/CMakeLists.txt b/libs/client-sdk/CMakeLists.txt index 8ff95589b..7c657a128 100644 --- a/libs/client-sdk/CMakeLists.txt +++ b/libs/client-sdk/CMakeLists.txt @@ -6,7 +6,7 @@ cmake_minimum_required(VERSION 3.19) project( LaunchDarklyCPPClient - VERSION 3.0.3 # {x-release-please-version} + VERSION 3.0.5 # {x-release-please-version} DESCRIPTION "LaunchDarkly C++ Client SDK" LANGUAGES CXX C ) diff --git a/libs/client-sdk/include/launchdarkly/client_side/client.hpp b/libs/client-sdk/include/launchdarkly/client_side/client.hpp index 601d15780..22dc9f7be 100644 --- a/libs/client-sdk/include/launchdarkly/client_side/client.hpp +++ b/libs/client-sdk/include/launchdarkly/client_side/client.hpp @@ -324,7 +324,7 @@ class Client : public IClient { private: inline static char const* const kVersion = - "3.0.3"; // {x-release-please-version} + "3.0.5"; // {x-release-please-version} std::unique_ptr client; }; diff --git a/libs/client-sdk/package.json b/libs/client-sdk/package.json index 00e81843d..aca1c09a2 100644 --- a/libs/client-sdk/package.json +++ b/libs/client-sdk/package.json @@ -1,10 +1,10 @@ { "name": "launchdarkly-cpp-client", "description": "This package.json exists for modeling dependencies for the release process.", - "version": "3.0.4", + "version": "3.0.5", "private": true, "dependencies": { - "launchdarkly-cpp-internal": "0.1.6", - "launchdarkly-cpp-common": "0.3.3" + "launchdarkly-cpp-internal": "0.1.7", + "launchdarkly-cpp-common": "0.3.4" } } diff --git a/libs/client-sdk/tests/client_c_bindings_test.cpp b/libs/client-sdk/tests/client_c_bindings_test.cpp index 052217b60..42b788487 100644 --- a/libs/client-sdk/tests/client_c_bindings_test.cpp +++ b/libs/client-sdk/tests/client_c_bindings_test.cpp @@ -27,7 +27,7 @@ TEST(ClientBindings, MinimalInstantiation) { char const* version = LDClientSDK_Version(); ASSERT_TRUE(version); - ASSERT_STREQ(version, "3.0.3"); // {x-release-please-version} + ASSERT_STREQ(version, "3.0.5"); // {x-release-please-version} LDClientSDK_Free(sdk); } diff --git a/libs/client-sdk/tests/client_test.cpp b/libs/client-sdk/tests/client_test.cpp index 07888d711..58fd91fcb 100644 --- a/libs/client-sdk/tests/client_test.cpp +++ b/libs/client-sdk/tests/client_test.cpp @@ -16,7 +16,7 @@ TEST(ClientTest, ClientConstructedWithMinimalConfigAndContext) { char const* version = client.Version(); ASSERT_TRUE(version); - ASSERT_STREQ(version, "3.0.3"); // {x-release-please-version} + ASSERT_STREQ(version, "3.0.5"); // {x-release-please-version} } TEST(ClientTest, AllFlagsIsEmpty) { diff --git a/libs/common/CHANGELOG.md b/libs/common/CHANGELOG.md index 70240cb23..7e88c32cb 100644 --- a/libs/common/CHANGELOG.md +++ b/libs/common/CHANGELOG.md @@ -6,6 +6,13 @@ * dependencies * launchdarkly-cpp-sse-client bumped from 0.1.0 to 0.1.1 +## [0.3.4](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-common-v0.3.3...launchdarkly-cpp-common-v0.3.4) (2023-08-28) + + +### Bug Fixes + +* initialization of LDFlagListener ([#218](https://github.com/launchdarkly/cpp-sdks/issues/218)) ([6c263dd](https://github.com/launchdarkly/cpp-sdks/commit/6c263dd9110e4da188a56cabc54f783190e1114c)) + ## [0.3.3](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-common-v0.3.2...launchdarkly-cpp-common-v0.3.3) (2023-08-16) diff --git a/libs/common/package.json b/libs/common/package.json index 48a576aa7..e40b38a50 100644 --- a/libs/common/package.json +++ b/libs/common/package.json @@ -1,7 +1,7 @@ { "name": "launchdarkly-cpp-common", "description": "This package.json exists for modeling dependencies for the release process.", - "version": "0.3.3", + "version": "0.3.4", "private": true, "dependencies": { "launchdarkly-cpp-sse-client": "0.1.1" diff --git a/libs/internal/CHANGELOG.md b/libs/internal/CHANGELOG.md index 28b9c3259..a25507822 100644 --- a/libs/internal/CHANGELOG.md +++ b/libs/internal/CHANGELOG.md @@ -28,6 +28,12 @@ * dependencies * launchdarkly-cpp-common bumped from 0.3.2 to 0.3.3 +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * launchdarkly-cpp-common bumped from 0.3.3 to 0.3.4 + ## [0.1.5](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-internal-v0.1.4...launchdarkly-cpp-internal-v0.1.5) (2023-06-30) diff --git a/libs/internal/package.json b/libs/internal/package.json index 380779601..44bbe8768 100644 --- a/libs/internal/package.json +++ b/libs/internal/package.json @@ -1,9 +1,9 @@ { "name": "launchdarkly-cpp-internal", "description": "This package.json exists for modeling dependencies for the release process.", - "version": "0.1.6", + "version": "0.1.7", "private": true, "dependencies": { - "launchdarkly-cpp-common": "0.3.3" + "launchdarkly-cpp-common": "0.3.4" } }