Skip to content

Commit 02992bf

Browse files
chore: release main
1 parent 30378a1 commit 02992bf

File tree

20 files changed

+85
-25
lines changed

20 files changed

+85
-25
lines changed

.release-please-manifest.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"libs/client-sdk": "3.8.2",
2+
"libs/client-sdk": "3.9.0",
33
"libs/server-sent-events": "0.5.5",
4-
"libs/common": "1.9.0",
5-
"libs/internal": "0.10.1",
6-
"libs/server-sdk": "3.8.1",
7-
"libs/server-sdk-redis-source": "2.1.17"
4+
"libs/common": "1.10.0",
5+
"libs/internal": "0.11.0",
6+
"libs/server-sdk": "3.8.2",
7+
"libs/server-sdk-redis-source": "2.1.18"
88
}

libs/client-sdk/CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Changelog
22

3+
## [3.9.0](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-client-v3.8.2...launchdarkly-cpp-client-v3.9.0) (2025-05-02)
4+
5+
6+
### Features
7+
8+
* generate events for flag prerequisites ([#465](https://github.com/launchdarkly/cpp-sdks/issues/465)) ([30378a1](https://github.com/launchdarkly/cpp-sdks/commit/30378a10b97ac46591ffd6fd3db43be14a60fad6))
9+
10+
11+
### Dependencies
12+
13+
* The following workspace dependencies were updated
14+
* dependencies
15+
* launchdarkly-cpp-internal bumped from 0.10.1 to 0.11.0
16+
* launchdarkly-cpp-common bumped from 1.9.0 to 1.10.0
17+
318
## [3.8.2](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-client-v3.8.1...launchdarkly-cpp-client-v3.8.2) (2025-01-28)
419

520

libs/client-sdk/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ cmake_minimum_required(VERSION 3.19)
66

77
project(
88
LaunchDarklyCPPClient
9-
VERSION 3.8.2 # {x-release-please-version}
9+
VERSION 3.9.0 # {x-release-please-version}
1010
DESCRIPTION "LaunchDarkly C++ Client SDK"
1111
LANGUAGES CXX C
1212
)

libs/client-sdk/include/launchdarkly/client_side/client.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ class Client : public IClient {
345345

346346
private:
347347
inline static char const* const kVersion =
348-
"3.8.2"; // {x-release-please-version}
348+
"3.9.0"; // {x-release-please-version}
349349
std::unique_ptr<IClient> client;
350350
};
351351

libs/client-sdk/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "launchdarkly-cpp-client",
33
"description": "This package.json exists for modeling dependencies for the release process.",
4-
"version": "3.8.2",
4+
"version": "3.9.0",
55
"private": true,
66
"dependencies": {
7-
"launchdarkly-cpp-internal": "0.10.1",
8-
"launchdarkly-cpp-common": "1.9.0",
7+
"launchdarkly-cpp-internal": "0.11.0",
8+
"launchdarkly-cpp-common": "1.10.0",
99
"launchdarkly-cpp-sse-client": "0.5.5"
1010
}
1111
}

libs/client-sdk/tests/client_c_bindings_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ TEST(ClientBindings, MinimalInstantiation) {
2727

2828
char const* version = LDClientSDK_Version();
2929
ASSERT_TRUE(version);
30-
ASSERT_STREQ(version, "3.8.2"); // {x-release-please-version}
30+
ASSERT_STREQ(version, "3.9.0"); // {x-release-please-version}
3131

3232
LDClientSDK_Free(sdk);
3333
}

libs/client-sdk/tests/client_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ TEST(ClientTest, ClientConstructedWithMinimalConfigAndContext) {
1616

1717
char const* version = client.Version();
1818
ASSERT_TRUE(version);
19-
ASSERT_STREQ(version, "3.8.2"); // {x-release-please-version}
19+
ASSERT_STREQ(version, "3.9.0"); // {x-release-please-version}
2020
}
2121

2222
TEST(ClientTest, AllFlagsIsEmpty) {

libs/common/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
# Changelog
22

33

4+
## [1.10.0](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-common-v1.9.0...launchdarkly-cpp-common-v1.10.0) (2025-05-02)
5+
6+
7+
### Features
8+
9+
* generate events for flag prerequisites ([#465](https://github.com/launchdarkly/cpp-sdks/issues/465)) ([30378a1](https://github.com/launchdarkly/cpp-sdks/commit/30378a10b97ac46591ffd6fd3db43be14a60fad6))
10+
11+
12+
### Bug Fixes
13+
14+
* handle setting protected/type-enforced attributes correctly ([#433](https://github.com/launchdarkly/cpp-sdks/issues/433)) ([d73de43](https://github.com/launchdarkly/cpp-sdks/commit/d73de432867a696be4fd7604eea21235ea9a6a9f))
15+
416
## [1.9.0](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-common-v1.8.0...launchdarkly-cpp-common-v1.9.0) (2024-10-30)
517

618

libs/common/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "launchdarkly-cpp-common",
33
"description": "This package.json exists for modeling dependencies for the release process.",
4-
"version": "1.9.0",
4+
"version": "1.10.0",
55
"private": true
66
}

libs/internal/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## [0.11.0](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-internal-v0.10.1...launchdarkly-cpp-internal-v0.11.0) (2025-05-02)
4+
5+
6+
### Features
7+
8+
* generate events for flag prerequisites ([#465](https://github.com/launchdarkly/cpp-sdks/issues/465)) ([30378a1](https://github.com/launchdarkly/cpp-sdks/commit/30378a10b97ac46591ffd6fd3db43be14a60fad6))
9+
10+
11+
### Dependencies
12+
13+
* The following workspace dependencies were updated
14+
* dependencies
15+
* launchdarkly-cpp-common bumped from 1.9.0 to 1.10.0
16+
317
## [0.10.1](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-internal-v0.10.0...launchdarkly-cpp-internal-v0.10.1) (2025-01-28)
418

519

0 commit comments

Comments
 (0)