Skip to content

Commit 16f9588

Browse files
chore: release main (#245)
🤖 I have created a release *beep* *boop* --- <details><summary>launchdarkly-cpp-client: 3.0.8</summary> ## [3.0.8](launchdarkly-cpp-client-v3.0.7...launchdarkly-cpp-client-v3.0.8) (2023-09-13) ### Bug Fixes * stream connections longer than 5 minutes are dropped ([#244](#244)) ([e12664f](e12664f)) ### Dependencies * The following workspace dependencies were updated * dependencies * launchdarkly-cpp-internal bumped from 0.1.8 to 0.1.9 * launchdarkly-cpp-common bumped from 0.3.5 to 0.3.6 * launchdarkly-cpp-sse-client bumped from 0.1.2 to 0.1.3 </details> <details><summary>launchdarkly-cpp-common: 0.3.6</summary> ## [0.3.6](launchdarkly-cpp-common-v0.3.5...launchdarkly-cpp-common-v0.3.6) (2023-09-13) ### Bug Fixes * stream connections longer than 5 minutes are dropped ([#244](#244)) ([e12664f](e12664f)) </details> <details><summary>launchdarkly-cpp-internal: 0.1.9</summary> ### Dependencies * The following workspace dependencies were updated * dependencies * launchdarkly-cpp-common bumped from 0.3.5 to 0.3.6 </details> <details><summary>launchdarkly-cpp-sse-client: 0.1.3</summary> ## [0.1.3](launchdarkly-cpp-sse-client-v0.1.2...launchdarkly-cpp-sse-client-v0.1.3) (2023-09-13) ### Bug Fixes * stream connections longer than 5 minutes are dropped ([#244](#244)) ([e12664f](e12664f)) </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 faa37a0 commit 16f9588

File tree

13 files changed

+52
-16
lines changed

13 files changed

+52
-16
lines changed

.release-please-manifest.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"libs/client-sdk": "3.0.7",
3-
"libs/server-sent-events": "0.1.2",
4-
"libs/common": "0.3.5",
5-
"libs/internal": "0.1.8"
2+
"libs/client-sdk": "3.0.8",
3+
"libs/server-sent-events": "0.1.3",
4+
"libs/common": "0.3.6",
5+
"libs/internal": "0.1.9"
66
}

libs/client-sdk/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,22 @@
22

33
All notable changes to the LaunchDarkly Client-Side SDK for C/C++ will be documented in this file. This project adheres to [Semantic Versioning](https://semver.org).
44

5+
## [3.0.8](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-client-v3.0.7...launchdarkly-cpp-client-v3.0.8) (2023-09-13)
6+
7+
8+
### Bug Fixes
9+
10+
* stream connections longer than 5 minutes are dropped ([#244](https://github.com/launchdarkly/cpp-sdks/issues/244)) ([e12664f](https://github.com/launchdarkly/cpp-sdks/commit/e12664f830c84c17242fe9f032d570796555f3d1))
11+
12+
13+
### Dependencies
14+
15+
* The following workspace dependencies were updated
16+
* dependencies
17+
* launchdarkly-cpp-internal bumped from 0.1.8 to 0.1.9
18+
* launchdarkly-cpp-common bumped from 0.3.5 to 0.3.6
19+
* launchdarkly-cpp-sse-client bumped from 0.1.2 to 0.1.3
20+
521
## [3.0.7](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-client-v3.0.6...launchdarkly-cpp-client-v3.0.7) (2023-08-31)
622

723

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

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.0.7",
4+
"version": "3.0.8",
55
"private": true,
66
"dependencies": {
7-
"launchdarkly-cpp-internal": "0.1.8",
8-
"launchdarkly-cpp-common": "0.3.5",
9-
"launchdarkly-cpp-sse-client": "0.1.2"
7+
"launchdarkly-cpp-internal": "0.1.9",
8+
"launchdarkly-cpp-common": "0.3.6",
9+
"launchdarkly-cpp-sse-client": "0.1.3"
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.0.7"); // {x-release-please-version}
30+
ASSERT_STREQ(version, "3.0.8"); // {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.0.7"); // {x-release-please-version}
19+
ASSERT_STREQ(version, "3.0.8"); // {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+
## [0.3.6](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-common-v0.3.5...launchdarkly-cpp-common-v0.3.6) (2023-09-13)
16+
17+
18+
### Bug Fixes
19+
20+
* stream connections longer than 5 minutes are dropped ([#244](https://github.com/launchdarkly/cpp-sdks/issues/244)) ([e12664f](https://github.com/launchdarkly/cpp-sdks/commit/e12664f830c84c17242fe9f032d570796555f3d1))
21+
1522
## [0.3.4](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-common-v0.3.3...launchdarkly-cpp-common-v0.3.4) (2023-08-28)
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": "0.3.5",
4+
"version": "0.3.6",
55
"private": true
66
}

libs/internal/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,12 @@
4040
* dependencies
4141
* launchdarkly-cpp-common bumped from 0.3.4 to 0.3.5
4242

43+
### Dependencies
44+
45+
* The following workspace dependencies were updated
46+
* dependencies
47+
* launchdarkly-cpp-common bumped from 0.3.5 to 0.3.6
48+
4349
## [0.1.5](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-internal-v0.1.4...launchdarkly-cpp-internal-v0.1.5) (2023-06-30)
4450

4551

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.1.8",
4+
"version": "0.1.9",
55
"private": true,
66
"dependencies": {
7-
"launchdarkly-cpp-common": "0.3.5"
7+
"launchdarkly-cpp-common": "0.3.6"
88
}
99
}

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.1.3](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-sse-client-v0.1.2...launchdarkly-cpp-sse-client-v0.1.3) (2023-09-13)
4+
5+
6+
### Bug Fixes
7+
8+
* stream connections longer than 5 minutes are dropped ([#244](https://github.com/launchdarkly/cpp-sdks/issues/244)) ([e12664f](https://github.com/launchdarkly/cpp-sdks/commit/e12664f830c84c17242fe9f032d570796555f3d1))
9+
310
## [0.1.2](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-sse-client-v0.1.1...launchdarkly-cpp-sse-client-v0.1.2) (2023-08-31)
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.1.2",
5+
"version": "0.1.3",
66
"dependencies": {}
77
}

0 commit comments

Comments
 (0)