Skip to content

Commit 8194e81

Browse files
chore: release main (#390)
🤖 I have created a release *beep* *boop* --- <details><summary>launchdarkly-cpp-client: 3.4.3</summary> ## [3.4.3](launchdarkly-cpp-client-v3.4.2...launchdarkly-cpp-client-v3.4.3) (2024-04-05) ### Dependencies * The following workspace dependencies were updated * dependencies * launchdarkly-cpp-internal bumped from 0.6.0 to 0.6.1 * launchdarkly-cpp-sse-client bumped from 0.3.1 to 0.3.2 </details> <details><summary>launchdarkly-cpp-internal: 0.6.1</summary> ## [0.6.1](launchdarkly-cpp-internal-v0.6.0...launchdarkly-cpp-internal-v0.6.1) (2024-04-05) ### Bug Fixes * handle service endpoints with custom ports correctly ([#389](#389)) ([f0114e3](f0114e3)) </details> <details><summary>launchdarkly-cpp-server: 3.3.6</summary> ## [3.3.6](launchdarkly-cpp-server-v3.3.5...launchdarkly-cpp-server-v3.3.6) (2024-04-05) ### Dependencies * The following workspace dependencies were updated * dependencies * launchdarkly-cpp-internal bumped from 0.6.0 to 0.6.1 * launchdarkly-cpp-sse-client bumped from 0.3.1 to 0.3.2 </details> <details><summary>launchdarkly-cpp-server-redis-source: 2.1.6</summary> ## [2.1.6](launchdarkly-cpp-server-redis-source-v2.1.5...launchdarkly-cpp-server-redis-source-v2.1.6) (2024-04-05) ### Dependencies * The following workspace dependencies were updated * dependencies * launchdarkly-cpp-server bumped from 3.3.5 to 3.3.6 </details> <details><summary>launchdarkly-cpp-sse-client: 0.3.2</summary> ## [0.3.2](launchdarkly-cpp-sse-client-v0.3.1...launchdarkly-cpp-sse-client-v0.3.2) (2024-04-05) ### Bug Fixes * handle service endpoints with custom ports correctly ([#389](#389)) ([f0114e3](f0114e3)) </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 f0114e3 commit 8194e81

File tree

20 files changed

+67
-24
lines changed

20 files changed

+67
-24
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.4.2",
3-
"libs/server-sent-events": "0.3.1",
2+
"libs/client-sdk": "3.4.3",
3+
"libs/server-sent-events": "0.3.2",
44
"libs/common": "1.5.0",
5-
"libs/internal": "0.6.0",
6-
"libs/server-sdk": "3.3.5",
7-
"libs/server-sdk-redis-source": "2.1.5"
5+
"libs/internal": "0.6.1",
6+
"libs/server-sdk": "3.3.6",
7+
"libs/server-sdk-redis-source": "2.1.6"
88
}

libs/client-sdk/CHANGELOG.md

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

3+
## [3.4.3](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-client-v3.4.2...launchdarkly-cpp-client-v3.4.3) (2024-04-05)
4+
5+
6+
### Dependencies
7+
8+
* The following workspace dependencies were updated
9+
* dependencies
10+
* launchdarkly-cpp-internal bumped from 0.6.0 to 0.6.1
11+
* launchdarkly-cpp-sse-client bumped from 0.3.1 to 0.3.2
12+
313
## [3.4.2](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-client-v3.4.1...launchdarkly-cpp-client-v3.4.2) (2024-04-03)
414

515

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.4.2 # {x-release-please-version}
9+
VERSION 3.4.3 # {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
@@ -324,7 +324,7 @@ class Client : public IClient {
324324

325325
private:
326326
inline static char const* const kVersion =
327-
"3.4.2"; // {x-release-please-version}
327+
"3.4.3"; // {x-release-please-version}
328328
std::unique_ptr<IClient> client;
329329
};
330330

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.4.2",
4+
"version": "3.4.3",
55
"private": true,
66
"dependencies": {
7-
"launchdarkly-cpp-internal": "0.6.0",
7+
"launchdarkly-cpp-internal": "0.6.1",
88
"launchdarkly-cpp-common": "1.5.0",
9-
"launchdarkly-cpp-sse-client": "0.3.1"
9+
"launchdarkly-cpp-sse-client": "0.3.2"
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.4.2"); // {x-release-please-version}
30+
ASSERT_STREQ(version, "3.4.3"); // {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.4.2"); // {x-release-please-version}
19+
ASSERT_STREQ(version, "3.4.3"); // {x-release-please-version}
2020
}
2121

2222
TEST(ClientTest, AllFlagsIsEmpty) {

libs/internal/CHANGELOG.md

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

3+
## [0.6.1](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-internal-v0.6.0...launchdarkly-cpp-internal-v0.6.1) (2024-04-05)
4+
5+
6+
### Bug Fixes
7+
8+
* handle service endpoints with custom ports correctly ([#389](https://github.com/launchdarkly/cpp-sdks/issues/389)) ([f0114e3](https://github.com/launchdarkly/cpp-sdks/commit/f0114e304756fcd606537ffd609f398606cb728f))
9+
310
## [0.6.0](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-internal-v0.5.4...launchdarkly-cpp-internal-v0.6.0) (2024-03-18)
411

512

libs/internal/package.json

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

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.6](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-server-redis-source-v2.1.5...launchdarkly-cpp-server-redis-source-v2.1.6) (2024-04-05)
4+
5+
6+
### Dependencies
7+
8+
* The following workspace dependencies were updated
9+
* dependencies
10+
* launchdarkly-cpp-server bumped from 3.3.5 to 3.3.6
11+
312
## [2.1.5](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-server-redis-source-v2.1.4...launchdarkly-cpp-server-redis-source-v2.1.5) (2024-04-04)
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.5 # {x-release-please-version}
9+
VERSION 2.1.6 # {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.5",
4+
"version": "2.1.6",
55
"private": true,
66
"dependencies": {
7-
"launchdarkly-cpp-server": "3.3.5"
7+
"launchdarkly-cpp-server": "3.3.6"
88
}
99
}

libs/server-sdk/CHANGELOG.md

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

3+
## [3.3.6](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-server-v3.3.5...launchdarkly-cpp-server-v3.3.6) (2024-04-05)
4+
5+
6+
### Dependencies
7+
8+
* The following workspace dependencies were updated
9+
* dependencies
10+
* launchdarkly-cpp-internal bumped from 0.6.0 to 0.6.1
11+
* launchdarkly-cpp-sse-client bumped from 0.3.1 to 0.3.2
12+
313
## [3.3.5](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-server-v3.3.4...launchdarkly-cpp-server-v3.3.5) (2024-04-04)
414

515

libs/server-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
LaunchDarklyCPPServer
9-
VERSION 3.3.5 # {x-release-please-version}
9+
VERSION 3.3.6 # {x-release-please-version}
1010
DESCRIPTION "LaunchDarkly C++ Server SDK"
1111
LANGUAGES CXX C
1212
)

libs/server-sdk/include/launchdarkly/server_side/client.hpp

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

349349
private:
350350
inline static char const* const kVersion =
351-
"3.3.5"; // {x-release-please-version}
351+
"3.3.6"; // {x-release-please-version}
352352
std::unique_ptr<IClient> client;
353353
};
354354

libs/server-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-server",
33
"description": "This package.json exists for modeling dependencies for the release process.",
4-
"version": "3.3.5",
4+
"version": "3.3.6",
55
"private": true,
66
"dependencies": {
7-
"launchdarkly-cpp-internal": "0.6.0",
7+
"launchdarkly-cpp-internal": "0.6.1",
88
"launchdarkly-cpp-common": "1.5.0",
9-
"launchdarkly-cpp-sse-client": "0.3.1"
9+
"launchdarkly-cpp-sse-client": "0.3.2"
1010
}
1111
}

libs/server-sdk/tests/client_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class ClientTest : public ::testing::Test {
2020
TEST_F(ClientTest, ClientConstructedWithMinimalConfigAndContextT) {
2121
char const* version = client_.Version();
2222
ASSERT_TRUE(version);
23-
ASSERT_STREQ(version, "3.3.5"); // {x-release-please-version}
23+
ASSERT_STREQ(version, "3.3.6"); // {x-release-please-version}
2424
}
2525

2626
TEST_F(ClientTest, BoolVariationDefaultPassesThrough) {

libs/server-sdk/tests/server_c_bindings_test.cpp

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

2525
char const* version = LDServerSDK_Version();
2626
ASSERT_TRUE(version);
27-
ASSERT_STREQ(version, "3.3.5"); // {x-release-please-version}
27+
ASSERT_STREQ(version, "3.3.6"); // {x-release-please-version}
2828

2929
LDServerSDK_Free(sdk);
3030
}

libs/server-sent-events/CHANGELOG.md

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

3+
## [0.3.2](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-sse-client-v0.3.1...launchdarkly-cpp-sse-client-v0.3.2) (2024-04-05)
4+
5+
6+
### Bug Fixes
7+
8+
* handle service endpoints with custom ports correctly ([#389](https://github.com/launchdarkly/cpp-sdks/issues/389)) ([f0114e3](https://github.com/launchdarkly/cpp-sdks/commit/f0114e304756fcd606537ffd609f398606cb728f))
9+
310
## [0.3.1](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-sse-client-v0.3.0...launchdarkly-cpp-sse-client-v0.3.1) (2024-04-03)
411

512

libs/server-sent-events/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
"name": "launchdarkly-cpp-sse-client",
33
"description": "This package.json exists for modeling dependencies for the release process.",
44
"private": true,
5-
"version": "0.3.1",
5+
"version": "0.3.2",
66
"dependencies": {}
77
}

0 commit comments

Comments
 (0)