Skip to content

Commit 44821a2

Browse files
chore: release main (#317)
🤖 I have created a release *beep* *boop* --- <details><summary>launchdarkly-cpp-client: 3.2.3</summary> ## [3.2.3](launchdarkly-cpp-client-v3.2.2...launchdarkly-cpp-client-v3.2.3) (2023-12-04) ### Bug Fixes * remove Boost::disable_autolinking from client and server linking ([#316](#316)) ([e84c6a0](e84c6a0)) </details> <details><summary>launchdarkly-cpp-server: 0.2.1</summary> ## [0.2.1](launchdarkly-cpp-server-v0.2.0...launchdarkly-cpp-server-v0.2.1) (2023-12-04) ### Bug Fixes * remove Boost::disable_autolinking from client and server linking ([#316](#316)) ([e84c6a0](e84c6a0)) </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> Co-authored-by: Casey Waldren <[email protected]>
1 parent 94899b9 commit 44821a2

File tree

13 files changed

+26
-12
lines changed

13 files changed

+26
-12
lines changed

.release-please-manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"libs/client-sdk": "3.2.2",
2+
"libs/client-sdk": "3.2.3",
33
"libs/server-sent-events": "0.2.0",
44
"libs/common": "1.0.0",
55
"libs/internal": "0.4.0",
6-
"libs/server-sdk": "0.2.0"
6+
"libs/server-sdk": "0.2.1"
77
}

libs/client-sdk/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,13 @@ All notable changes to the LaunchDarkly Client-Side SDK for C/C++ will be docume
1515
* launchdarkly-cpp-internal bumped from 0.3.0 to 0.4.0
1616
* launchdarkly-cpp-common bumped from 0.5.0 to 1.0.0
1717

18+
## [3.2.3](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-client-v3.2.2...launchdarkly-cpp-client-v3.2.3) (2023-12-04)
19+
20+
21+
### Bug Fixes
22+
23+
* remove Boost::disable_autolinking from client and server linking ([#316](https://github.com/launchdarkly/cpp-sdks/issues/316)) ([e84c6a0](https://github.com/launchdarkly/cpp-sdks/commit/e84c6a071553b128436e6dd1bb664f0fd752e4d1))
24+
1825
## [3.2.1](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-client-v3.2.0...launchdarkly-cpp-client-v3.2.1) (2023-10-23)
1926

2027

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.2.2 # {x-release-please-version}
9+
VERSION 3.2.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.2.2"; // {x-release-please-version}
327+
"3.2.3"; // {x-release-please-version}
328328
std::unique_ptr<IClient> client;
329329
};
330330

libs/client-sdk/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-client",
33
"description": "This package.json exists for modeling dependencies for the release process.",
4-
"version": "3.2.2",
4+
"version": "3.2.3",
55
"private": true,
66
"dependencies": {
77
"launchdarkly-cpp-internal": "0.4.0",

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.2.2"); // {x-release-please-version}
30+
ASSERT_STREQ(version, "3.2.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.2.2"); // {x-release-please-version}
19+
ASSERT_STREQ(version, "3.2.3"); // {x-release-please-version}
2020
}
2121

2222
TEST(ClientTest, AllFlagsIsEmpty) {

libs/server-sdk/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.2.1](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-server-v0.2.0...launchdarkly-cpp-server-v0.2.1) (2023-12-04)
4+
5+
6+
### Bug Fixes
7+
8+
* remove Boost::disable_autolinking from client and server linking ([#316](https://github.com/launchdarkly/cpp-sdks/issues/316)) ([e84c6a0](https://github.com/launchdarkly/cpp-sdks/commit/e84c6a071553b128436e6dd1bb664f0fd752e4d1))
9+
310
## [0.2.0](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-server-v0.1.0...launchdarkly-cpp-server-v0.2.0) (2023-11-29)
411

512

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 0.2.0 # {x-release-please-version}
9+
VERSION 0.2.1 # {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-
"0.2.0"; // {x-release-please-version}
351+
"0.2.1"; // {x-release-please-version}
352352
std::unique_ptr<IClient> client;
353353
};
354354

libs/server-sdk/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-server",
33
"description": "This package.json exists for modeling dependencies for the release process.",
4-
"version": "0.2.0",
4+
"version": "0.2.1",
55
"private": true,
66
"dependencies": {
77
"launchdarkly-cpp-internal": "0.4.0",

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, "0.2.0"); // {x-release-please-version}
23+
ASSERT_STREQ(version, "0.2.1"); // {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
@@ -23,7 +23,7 @@ TEST(ClientBindings, MinimalInstantiation) {
2323

2424
char const* version = LDServerSDK_Version();
2525
ASSERT_TRUE(version);
26-
ASSERT_STREQ(version, "0.2.0"); // {x-release-please-version}
26+
ASSERT_STREQ(version, "0.2.1"); // {x-release-please-version}
2727

2828
LDServerSDK_Free(sdk);
2929
}

0 commit comments

Comments
 (0)