diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 12b569809..f9e6b4a47 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,6 +1,6 @@ { - "libs/client-sdk": "0.1.0", + "libs/client-sdk": "0.2.0", "libs/server-sent-events": "0.1.0", - "libs/common": "0.1.0", - "libs/internal": "0.1.0" + "libs/common": "0.2.0", + "libs/internal": "0.1.1" } \ No newline at end of file diff --git a/libs/client-sdk/CHANGELOG.md b/libs/client-sdk/CHANGELOG.md index 8f5088d7d..1a2bbbbd2 100644 --- a/libs/client-sdk/CHANGELOG.md +++ b/libs/client-sdk/CHANGELOG.md @@ -2,6 +2,24 @@ 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). +## [0.2.0](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-client-v0.1.0...launchdarkly-cpp-client-v0.2.0) (2023-05-31) + + +### Features + +* add AllFlags C binding ([#128](https://github.com/launchdarkly/cpp-sdks/issues/128)) ([9aa0794](https://github.com/launchdarkly/cpp-sdks/commit/9aa07941c1c9d4184f8ff009fccb03db785320c3)) +* Add C bindings for data source status. ([#124](https://github.com/launchdarkly/cpp-sdks/issues/124)) ([d175abb](https://github.com/launchdarkly/cpp-sdks/commit/d175abb26fdcdf28700315cdd7347dd1399cbe17)) +* Add c bindings for FlagNotifier. ([#119](https://github.com/launchdarkly/cpp-sdks/issues/119)) ([11a7f61](https://github.com/launchdarkly/cpp-sdks/commit/11a7f61d56deb1ee10e73fad134efdb05887f86f)) +* add Version method to obtain SDK version ([#122](https://github.com/launchdarkly/cpp-sdks/issues/122)) ([1003117](https://github.com/launchdarkly/cpp-sdks/commit/10031170b30f75fa7d182aab51a36ada5e126250)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * launchdarkly-cpp-internal bumped from 0.1.0 to 0.1.1 + * launchdarkly-cpp-common bumped from 0.1.0 to 0.2.0 + ## 0.1.0 (2023-05-24) This is a prerelease version and is not considered suitable for production. diff --git a/libs/client-sdk/include/launchdarkly/client_side/client.hpp b/libs/client-sdk/include/launchdarkly/client_side/client.hpp index cb2aabb5c..3aa80e995 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 = - "0.1.0"; // {x-release-please-version} + "0.2.0"; // {x-release-please-version} std::unique_ptr client; }; diff --git a/libs/client-sdk/package.json b/libs/client-sdk/package.json index a2badaa73..008e56aa4 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": "0.1.0", + "version": "0.2.0", "private": true, "dependencies": { - "launchdarkly-cpp-internal": "0.1.0", - "launchdarkly-cpp-common": "0.1.0" + "launchdarkly-cpp-internal": "0.1.1", + "launchdarkly-cpp-common": "0.2.0" } } diff --git a/libs/client-sdk/tests/client_c_bindings_test.cpp b/libs/client-sdk/tests/client_c_bindings_test.cpp index fd38597f5..07995259d 100644 --- a/libs/client-sdk/tests/client_c_bindings_test.cpp +++ b/libs/client-sdk/tests/client_c_bindings_test.cpp @@ -25,7 +25,7 @@ TEST(ClientBindings, MinimalInstantiation) { char const* version = LDClientSDK_Version(); ASSERT_TRUE(version); - ASSERT_STREQ(version, "0.1.0"); // {x-release-please-version} + ASSERT_STREQ(version, "0.2.0"); // {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 9b4ab40e3..b432a6c96 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, "0.1.0"); // {x-release-please-version} + ASSERT_STREQ(version, "0.2.0"); // {x-release-please-version} } TEST(ClientTest, AllFlagsIsEmpty) { diff --git a/libs/common/CHANGELOG.md b/libs/common/CHANGELOG.md index 51e1e3255..6a9c7efb9 100644 --- a/libs/common/CHANGELOG.md +++ b/libs/common/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## [0.2.0](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-common-v0.1.0...launchdarkly-cpp-common-v0.2.0) (2023-05-31) + + +### Features + +* add AllFlags C binding ([#128](https://github.com/launchdarkly/cpp-sdks/issues/128)) ([9aa0794](https://github.com/launchdarkly/cpp-sdks/commit/9aa07941c1c9d4184f8ff009fccb03db785320c3)) +* Add C bindings for data source status. ([#124](https://github.com/launchdarkly/cpp-sdks/issues/124)) ([d175abb](https://github.com/launchdarkly/cpp-sdks/commit/d175abb26fdcdf28700315cdd7347dd1399cbe17)) +* Add c bindings for FlagNotifier. ([#119](https://github.com/launchdarkly/cpp-sdks/issues/119)) ([11a7f61](https://github.com/launchdarkly/cpp-sdks/commit/11a7f61d56deb1ee10e73fad134efdb05887f86f)) +* Allow for easier creation of contexts from existing contexts. ([#130](https://github.com/launchdarkly/cpp-sdks/issues/130)) ([5e18616](https://github.com/launchdarkly/cpp-sdks/commit/5e18616916dbb2a5ade86b06e17f194b3981fe37)) + + +### Bug Fixes + +* rename C iterator bindings to follow new/free pattern ([#129](https://github.com/launchdarkly/cpp-sdks/issues/129)) ([24dff9a](https://github.com/launchdarkly/cpp-sdks/commit/24dff9aebe4626bca02ccc6336ef46f2e41f76c7)) + ## 0.1.0 (2023-05-24) diff --git a/libs/common/package.json b/libs/common/package.json index f235b47de..de1553f31 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.1.0", + "version": "0.2.0", "private": true, "dependencies": { "launchdarkly-cpp-sse-client": "0.1.0" diff --git a/libs/internal/CHANGELOG.md b/libs/internal/CHANGELOG.md index a601eb42a..5b0c04ce7 100644 --- a/libs/internal/CHANGELOG.md +++ b/libs/internal/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * launchdarkly-cpp-common bumped from 0.1.0 to 0.2.0 + ## 0.1.0 (2023-05-24) diff --git a/libs/internal/package.json b/libs/internal/package.json index 26241697b..d8ffe565b 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.0", + "version": "0.1.1", "private": true, "dependencies": { - "launchdarkly-cpp-common": "0.1.0" + "launchdarkly-cpp-common": "0.2.0" } }