Skip to content

Commit 1ae6e07

Browse files
chore: release main (#401)
🤖 I have created a release *beep* *boop* --- <details><summary>launchdarkly-cpp-client: 3.5.0</summary> ## [3.5.0](launchdarkly-cpp-client-v3.4.3...launchdarkly-cpp-client-v3.5.0) (2024-05-13) ### Features * add ability to skip TLS peer verification ([#399](#399)) ([0422d35](0422d35)) ### Dependencies * The following workspace dependencies were updated * dependencies * launchdarkly-cpp-internal bumped from 0.6.1 to 0.7.0 * launchdarkly-cpp-common bumped from 1.5.0 to 1.6.0 * launchdarkly-cpp-sse-client bumped from 0.3.2 to 0.4.0 </details> <details><summary>launchdarkly-cpp-common: 1.6.0</summary> ## [1.6.0](launchdarkly-cpp-common-v1.5.0...launchdarkly-cpp-common-v1.6.0) (2024-05-13) ### Features * add ability to skip TLS peer verification ([#399](#399)) ([0422d35](0422d35)) </details> <details><summary>launchdarkly-cpp-internal: 0.7.0</summary> ## [0.7.0](launchdarkly-cpp-internal-v0.6.1...launchdarkly-cpp-internal-v0.7.0) (2024-05-13) ### Features * add ability to skip TLS peer verification ([#399](#399)) ([0422d35](0422d35)) ### Dependencies * The following workspace dependencies were updated * dependencies * launchdarkly-cpp-common bumped from 1.5.0 to 1.6.0 </details> <details><summary>launchdarkly-cpp-server: 3.4.0</summary> ## [3.4.0](launchdarkly-cpp-server-v3.3.6...launchdarkly-cpp-server-v3.4.0) (2024-05-13) ### Features * add ability to skip TLS peer verification ([#399](#399)) ([0422d35](0422d35)) ### Dependencies * The following workspace dependencies were updated * dependencies * launchdarkly-cpp-internal bumped from 0.6.1 to 0.7.0 * launchdarkly-cpp-common bumped from 1.5.0 to 1.6.0 * launchdarkly-cpp-sse-client bumped from 0.3.2 to 0.4.0 </details> <details><summary>launchdarkly-cpp-server-redis-source: 2.1.7</summary> ## [2.1.7](launchdarkly-cpp-server-redis-source-v2.1.6...launchdarkly-cpp-server-redis-source-v2.1.7) (2024-05-13) ### Dependencies * The following workspace dependencies were updated * dependencies * launchdarkly-cpp-server bumped from 3.3.6 to 3.4.0 </details> <details><summary>launchdarkly-cpp-sse-client: 0.4.0</summary> ## [0.4.0](launchdarkly-cpp-sse-client-v0.3.2...launchdarkly-cpp-sse-client-v0.4.0) (2024-05-13) ### Features * add ability to skip TLS peer verification ([#399](#399)) ([0422d35](0422d35)) </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 0422d35 commit 1ae6e07

File tree

22 files changed

+98
-29
lines changed

22 files changed

+98
-29
lines changed

.release-please-manifest.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"libs/client-sdk": "3.4.3",
3-
"libs/server-sent-events": "0.3.2",
4-
"libs/common": "1.5.0",
5-
"libs/internal": "0.6.1",
6-
"libs/server-sdk": "3.3.6",
7-
"libs/server-sdk-redis-source": "2.1.6"
2+
"libs/client-sdk": "3.5.0",
3+
"libs/server-sent-events": "0.4.0",
4+
"libs/common": "1.6.0",
5+
"libs/internal": "0.7.0",
6+
"libs/server-sdk": "3.4.0",
7+
"libs/server-sdk-redis-source": "2.1.7"
88
}

libs/client-sdk/CHANGELOG.md

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

3+
## [3.5.0](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-client-v3.4.3...launchdarkly-cpp-client-v3.5.0) (2024-05-13)
4+
5+
6+
### Features
7+
8+
* add ability to skip TLS peer verification ([#399](https://github.com/launchdarkly/cpp-sdks/issues/399)) ([0422d35](https://github.com/launchdarkly/cpp-sdks/commit/0422d355a9af0af5225e8d60cb853f9d5cf0c35f))
9+
10+
11+
### Dependencies
12+
13+
* The following workspace dependencies were updated
14+
* dependencies
15+
* launchdarkly-cpp-internal bumped from 0.6.1 to 0.7.0
16+
* launchdarkly-cpp-common bumped from 1.5.0 to 1.6.0
17+
* launchdarkly-cpp-sse-client bumped from 0.3.2 to 0.4.0
18+
319
## [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)
420

521

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.3 # {x-release-please-version}
9+
VERSION 3.5.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
@@ -338,7 +338,7 @@ class Client : public IClient {
338338

339339
private:
340340
inline static char const* const kVersion =
341-
"3.4.3"; // {x-release-please-version}
341+
"3.5.0"; // {x-release-please-version}
342342
std::unique_ptr<IClient> client;
343343
};
344344

libs/client-sdk/package.json

Lines changed: 4 additions & 4 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.3",
4+
"version": "3.5.0",
55
"private": true,
66
"dependencies": {
7-
"launchdarkly-cpp-internal": "0.6.1",
8-
"launchdarkly-cpp-common": "1.5.0",
9-
"launchdarkly-cpp-sse-client": "0.3.2"
7+
"launchdarkly-cpp-internal": "0.7.0",
8+
"launchdarkly-cpp-common": "1.6.0",
9+
"launchdarkly-cpp-sse-client": "0.4.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.4.3"); // {x-release-please-version}
30+
ASSERT_STREQ(version, "3.5.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.4.3"); // {x-release-please-version}
19+
ASSERT_STREQ(version, "3.5.0"); // {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
@@ -1,6 +1,13 @@
11
# Changelog
22

33

4+
## [1.6.0](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-common-v1.5.0...launchdarkly-cpp-common-v1.6.0) (2024-05-13)
5+
6+
7+
### Features
8+
9+
* add ability to skip TLS peer verification ([#399](https://github.com/launchdarkly/cpp-sdks/issues/399)) ([0422d35](https://github.com/launchdarkly/cpp-sdks/commit/0422d355a9af0af5225e8d60cb853f9d5cf0c35f))
10+
411
## [1.5.0](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-common-v1.4.0...launchdarkly-cpp-common-v1.5.0) (2023-12-26)
512

613

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.5.0",
4+
"version": "1.6.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.7.0](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-internal-v0.6.1...launchdarkly-cpp-internal-v0.7.0) (2024-05-13)
4+
5+
6+
### Features
7+
8+
* add ability to skip TLS peer verification ([#399](https://github.com/launchdarkly/cpp-sdks/issues/399)) ([0422d35](https://github.com/launchdarkly/cpp-sdks/commit/0422d355a9af0af5225e8d60cb853f9d5cf0c35f))
9+
10+
11+
### Dependencies
12+
13+
* The following workspace dependencies were updated
14+
* dependencies
15+
* launchdarkly-cpp-common bumped from 1.5.0 to 1.6.0
16+
317
## [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)
418

519

0 commit comments

Comments
 (0)