Skip to content

Commit 048df82

Browse files
chore: release main (#423)
🤖 I have created a release *beep* *boop* --- <details><summary>launchdarkly-cpp-client: 3.6.2</summary> ## [3.6.2](launchdarkly-cpp-client-v3.6.1...launchdarkly-cpp-client-v3.6.2) (2024-07-15) ### Bug Fixes * more helpful error messages for streaming connection failures ([#419](#419)) ([6bd21ba](6bd21ba)) ### Dependencies * The following workspace dependencies were updated * dependencies * launchdarkly-cpp-sse-client bumped from 0.5.0 to 0.5.1 </details> <details><summary>launchdarkly-cpp-server: 3.5.2</summary> ## [3.5.2](launchdarkly-cpp-server-v3.5.1...launchdarkly-cpp-server-v3.5.2) (2024-07-15) ### Bug Fixes * more helpful error messages for streaming connection failures ([#419](#419)) ([6bd21ba](6bd21ba)) ### Dependencies * The following workspace dependencies were updated * dependencies * launchdarkly-cpp-sse-client bumped from 0.5.0 to 0.5.1 </details> <details><summary>launchdarkly-cpp-server-redis-source: 2.1.10</summary> ## [2.1.10](launchdarkly-cpp-server-redis-source-v2.1.9...launchdarkly-cpp-server-redis-source-v2.1.10) (2024-07-15) ### Dependencies * The following workspace dependencies were updated * dependencies * launchdarkly-cpp-server bumped from 3.5.1 to 3.5.2 </details> <details><summary>launchdarkly-cpp-sse-client: 0.5.1</summary> ## [0.5.1](launchdarkly-cpp-sse-client-v0.5.0...launchdarkly-cpp-sse-client-v0.5.1) (2024-07-15) ### Bug Fixes * more helpful error messages for streaming connection failures ([#419](#419)) ([6bd21ba](6bd21ba)) </details> --- 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>
1 parent 6bd21ba commit 048df82

File tree

18 files changed

+64
-20
lines changed

18 files changed

+64
-20
lines changed

.release-please-manifest.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"libs/client-sdk": "3.6.1",
3-
"libs/server-sent-events": "0.5.0",
2+
"libs/client-sdk": "3.6.2",
3+
"libs/server-sent-events": "0.5.1",
44
"libs/common": "1.7.0",
55
"libs/internal": "0.8.1",
6-
"libs/server-sdk": "3.5.1",
7-
"libs/server-sdk-redis-source": "2.1.9"
6+
"libs/server-sdk": "3.5.2",
7+
"libs/server-sdk-redis-source": "2.1.10"
88
}

libs/client-sdk/CHANGELOG.md

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

3+
## [3.6.2](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-client-v3.6.1...launchdarkly-cpp-client-v3.6.2) (2024-07-15)
4+
5+
6+
### Bug Fixes
7+
8+
* more helpful error messages for streaming connection failures ([#419](https://github.com/launchdarkly/cpp-sdks/issues/419)) ([6bd21ba](https://github.com/launchdarkly/cpp-sdks/commit/6bd21ba1eafb5f19275935e1f62f7304d4dc69f5))
9+
10+
11+
### Dependencies
12+
13+
* The following workspace dependencies were updated
14+
* dependencies
15+
* launchdarkly-cpp-sse-client bumped from 0.5.0 to 0.5.1
16+
317
## [3.6.1](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-client-v3.6.0...launchdarkly-cpp-client-v3.6.1) (2024-06-11)
418

519

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.6.1 # {x-release-please-version}
9+
VERSION 3.6.2 # {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.6.1"; // {x-release-please-version}
348+
"3.6.2"; // {x-release-please-version}
349349
std::unique_ptr<IClient> client;
350350
};
351351

libs/client-sdk/package.json

Lines changed: 2 additions & 2 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.6.1",
4+
"version": "3.6.2",
55
"private": true,
66
"dependencies": {
77
"launchdarkly-cpp-internal": "0.8.1",
88
"launchdarkly-cpp-common": "1.7.0",
9-
"launchdarkly-cpp-sse-client": "0.5.0"
9+
"launchdarkly-cpp-sse-client": "0.5.1"
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.6.1"); // {x-release-please-version}
30+
ASSERT_STREQ(version, "3.6.2"); // {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.6.1"); // {x-release-please-version}
19+
ASSERT_STREQ(version, "3.6.2"); // {x-release-please-version}
2020
}
2121

2222
TEST(ClientTest, AllFlagsIsEmpty) {

libs/server-sdk-redis-source/CHANGELOG.md

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

3+
## [2.1.10](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-server-redis-source-v2.1.9...launchdarkly-cpp-server-redis-source-v2.1.10) (2024-07-15)
4+
5+
6+
### Dependencies
7+
8+
* The following workspace dependencies were updated
9+
* dependencies
10+
* launchdarkly-cpp-server bumped from 3.5.1 to 3.5.2
11+
312
## [2.1.9](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-server-redis-source-v2.1.8...launchdarkly-cpp-server-redis-source-v2.1.9) (2024-06-11)
413

514

libs/server-sdk-redis-source/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
LaunchDarklyCPPServerRedisSource
9-
VERSION 2.1.9 # {x-release-please-version}
9+
VERSION 2.1.10 # {x-release-please-version}
1010
DESCRIPTION "LaunchDarkly C++ Server SDK Redis Source"
1111
LANGUAGES CXX C
1212
)
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"name": "launchdarkly-cpp-server-redis-source",
33
"description": "This package.json exists for modeling dependencies for the release process.",
4-
"version": "2.1.9",
4+
"version": "2.1.10",
55
"private": true,
66
"dependencies": {
7-
"launchdarkly-cpp-server": "3.5.1"
7+
"launchdarkly-cpp-server": "3.5.2"
88
}
99
}

0 commit comments

Comments
 (0)