Skip to content

Commit cd484b1

Browse files
chore: release main (#336)
🤖 I have created a release *beep* *boop* --- <details><summary>launchdarkly-cpp-client: 3.3.1</summary> ### Dependencies * The following workspace dependencies were updated * dependencies * launchdarkly-cpp-internal bumped from 0.5.0 to 0.5.1 * launchdarkly-cpp-common bumped from 1.1.0 to 1.2.0 </details> <details><summary>launchdarkly-cpp-common: 1.2.0</summary> ## [1.2.0](launchdarkly-cpp-common-v1.1.0...launchdarkly-cpp-common-v1.2.0) (2023-12-13) ### Features * add C bindings for getting log levels ([#334](#334)) ([2b7f7d6](2b7f7d6)) </details> <details><summary>launchdarkly-cpp-internal: 0.5.1</summary> ### Dependencies * The following workspace dependencies were updated * dependencies * launchdarkly-cpp-common bumped from 1.1.0 to 1.2.0 </details> <details><summary>launchdarkly-cpp-server: 3.0.1</summary> ## [3.0.1](launchdarkly-cpp-server-v3.0.0...launchdarkly-cpp-server-v3.0.1) (2023-12-13) ### Bug Fixes * double variation was returning ints ([#335](#335)) ([ef0559d](ef0559d)) ### Dependencies * The following workspace dependencies were updated * dependencies * launchdarkly-cpp-internal bumped from 0.5.0 to 0.5.1 * launchdarkly-cpp-common bumped from 1.1.0 to 1.2.0 </details> <details><summary>launchdarkly-cpp-server-redis-source: 1.0.1</summary> ### Dependencies * The following workspace dependencies were updated * dependencies * launchdarkly-cpp-server bumped from 3.0.0 to 3.0.1 </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 7e12380 commit cd484b1

File tree

18 files changed

+64
-23
lines changed

18 files changed

+64
-23
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.3.0",
2+
"libs/client-sdk": "3.3.1",
33
"libs/server-sent-events": "0.3.0",
4-
"libs/common": "1.1.0",
5-
"libs/internal": "0.5.0",
6-
"libs/server-sdk": "3.0.0",
7-
"libs/server-sdk-redis-source": "1.0.0"
4+
"libs/common": "1.2.0",
5+
"libs/internal": "0.5.1",
6+
"libs/server-sdk": "3.0.1",
7+
"libs/server-sdk-redis-source": "1.0.1"
88
}

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+
### Dependencies
19+
20+
* The following workspace dependencies were updated
21+
* dependencies
22+
* launchdarkly-cpp-internal bumped from 0.5.0 to 0.5.1
23+
* launchdarkly-cpp-common bumped from 1.1.0 to 1.2.0
24+
1825
## [3.3.0](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-client-v3.2.3...launchdarkly-cpp-client-v3.3.0) (2023-12-04)
1926

2027

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.3.0"; // {x-release-please-version}
327+
"3.3.1"; // {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.3.0",
4+
"version": "3.3.1",
55
"private": true,
66
"dependencies": {
7-
"launchdarkly-cpp-internal": "0.5.0",
8-
"launchdarkly-cpp-common": "1.1.0",
7+
"launchdarkly-cpp-internal": "0.5.1",
8+
"launchdarkly-cpp-common": "1.2.0",
99
"launchdarkly-cpp-sse-client": "0.3.0"
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.3.0"); // {x-release-please-version}
30+
ASSERT_STREQ(version, "3.3.1"); // {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.3.0"); // {x-release-please-version}
19+
ASSERT_STREQ(version, "3.3.1"); // {x-release-please-version}
2020
}
2121

2222
TEST(ClientTest, AllFlagsIsEmpty) {

libs/common/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,13 @@
1212
* dependencies
1313
* launchdarkly-cpp-sse-client bumped from 0.1.1 to 0.1.2
1414

15+
## [1.2.0](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-common-v1.1.0...launchdarkly-cpp-common-v1.2.0) (2023-12-13)
16+
17+
18+
### Features
19+
20+
* add C bindings for getting log levels ([#334](https://github.com/launchdarkly/cpp-sdks/issues/334)) ([2b7f7d6](https://github.com/launchdarkly/cpp-sdks/commit/2b7f7d64dd2f401e984d14b444c34ad394cf7485))
21+
1522
## [1.1.0](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-common-v1.0.0...launchdarkly-cpp-common-v1.1.0) (2023-12-04)
1623

1724

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.1.0",
4+
"version": "1.2.0",
55
"private": true
66
}

libs/internal/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,12 @@
4646
* dependencies
4747
* launchdarkly-cpp-common bumped from 0.3.5 to 0.3.6
4848

49+
### Dependencies
50+
51+
* The following workspace dependencies were updated
52+
* dependencies
53+
* launchdarkly-cpp-common bumped from 1.1.0 to 1.2.0
54+
4955
## [0.5.0](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-internal-v0.4.0...launchdarkly-cpp-internal-v0.5.0) (2023-12-04)
5056

5157

libs/internal/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"name": "launchdarkly-cpp-internal",
33
"description": "This package.json exists for modeling dependencies for the release process.",
4-
"version": "0.5.0",
4+
"version": "0.5.1",
55
"private": true,
66
"dependencies": {
7-
"launchdarkly-cpp-common": "1.1.0"
7+
"launchdarkly-cpp-common": "1.2.0"
88
}
99
}

0 commit comments

Comments
 (0)