Skip to content

Commit d3e9890

Browse files
chore: release main (#219)
🤖 I have created a release *beep* *boop* --- <details><summary>launchdarkly-cpp-client: 3.0.5</summary> ## [3.0.5](launchdarkly-cpp-client-v3.0.4...launchdarkly-cpp-client-v3.0.5) (2023-08-28) ### Bug Fixes * initialization of LDFlagListener ([#218](#218)) ([6c263dd](6c263dd)) ### Dependencies * The following workspace dependencies were updated * dependencies * launchdarkly-cpp-internal bumped from 0.1.6 to 0.1.7 * launchdarkly-cpp-common bumped from 0.3.3 to 0.3.4 </details> <details><summary>launchdarkly-cpp-common: 0.3.4</summary> ## [0.3.4](launchdarkly-cpp-common-v0.3.3...launchdarkly-cpp-common-v0.3.4) (2023-08-28) ### Bug Fixes * initialization of LDFlagListener ([#218](#218)) ([6c263dd](6c263dd)) </details> <details><summary>launchdarkly-cpp-internal: 0.1.7</summary> ### Dependencies * The following workspace dependencies were updated * dependencies * launchdarkly-cpp-common bumped from 0.3.3 to 0.3.4 </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 6c263dd commit d3e9890

File tree

11 files changed

+41
-13
lines changed

11 files changed

+41
-13
lines changed

.release-please-manifest.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"libs/client-sdk": "3.0.4",
2+
"libs/client-sdk": "3.0.5",
33
"libs/server-sent-events": "0.1.1",
4-
"libs/common": "0.3.3",
5-
"libs/internal": "0.1.6"
4+
"libs/common": "0.3.4",
5+
"libs/internal": "0.1.7"
66
}

libs/client-sdk/CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,21 @@
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.5](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-client-v3.0.4...launchdarkly-cpp-client-v3.0.5) (2023-08-28)
6+
7+
8+
### Bug Fixes
9+
10+
* initialization of LDFlagListener ([#218](https://github.com/launchdarkly/cpp-sdks/issues/218)) ([6c263dd](https://github.com/launchdarkly/cpp-sdks/commit/6c263dd9110e4da188a56cabc54f783190e1114c))
11+
12+
13+
### Dependencies
14+
15+
* The following workspace dependencies were updated
16+
* dependencies
17+
* launchdarkly-cpp-internal bumped from 0.1.6 to 0.1.7
18+
* launchdarkly-cpp-common bumped from 0.3.3 to 0.3.4
19+
520
## [3.0.4](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-client-v3.0.3...launchdarkly-cpp-client-v3.0.4) (2023-08-16)
621

722
### Bug Fixes

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.3 # {x-release-please-version}
9+
VERSION 3.0.5 # {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.3"; // {x-release-please-version}
327+
"3.0.5"; // {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,10 +1,10 @@
11
{
22
"name": "launchdarkly-cpp-client",
33
"description": "This package.json exists for modeling dependencies for the release process.",
4-
"version": "3.0.4",
4+
"version": "3.0.5",
55
"private": true,
66
"dependencies": {
7-
"launchdarkly-cpp-internal": "0.1.6",
8-
"launchdarkly-cpp-common": "0.3.3"
7+
"launchdarkly-cpp-internal": "0.1.7",
8+
"launchdarkly-cpp-common": "0.3.4"
99
}
1010
}

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.3"); // {x-release-please-version}
30+
ASSERT_STREQ(version, "3.0.5"); // {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.3"); // {x-release-please-version}
19+
ASSERT_STREQ(version, "3.0.5"); // {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
@@ -6,6 +6,13 @@
66
* dependencies
77
* launchdarkly-cpp-sse-client bumped from 0.1.0 to 0.1.1
88

9+
## [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)
10+
11+
12+
### Bug Fixes
13+
14+
* initialization of LDFlagListener ([#218](https://github.com/launchdarkly/cpp-sdks/issues/218)) ([6c263dd](https://github.com/launchdarkly/cpp-sdks/commit/6c263dd9110e4da188a56cabc54f783190e1114c))
15+
916
## [0.3.3](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-common-v0.3.2...launchdarkly-cpp-common-v0.3.3) (2023-08-16)
1017

1118

libs/common/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-common",
33
"description": "This package.json exists for modeling dependencies for the release process.",
4-
"version": "0.3.3",
4+
"version": "0.3.4",
55
"private": true,
66
"dependencies": {
77
"launchdarkly-cpp-sse-client": "0.1.1"

libs/internal/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,12 @@
2828
* dependencies
2929
* launchdarkly-cpp-common bumped from 0.3.2 to 0.3.3
3030

31+
### Dependencies
32+
33+
* The following workspace dependencies were updated
34+
* dependencies
35+
* launchdarkly-cpp-common bumped from 0.3.3 to 0.3.4
36+
3137
## [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)
3238

3339

0 commit comments

Comments
 (0)