Skip to content

Commit 3d0b737

Browse files
chore: release main
1 parent c8b3aee commit 3d0b737

File tree

10 files changed

+42
-12
lines changed

10 files changed

+42
-12
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.0",
2+
"libs/client-sdk": "3.0.1",
33
"libs/server-sent-events": "0.1.0",
4-
"libs/common": "0.3.0",
5-
"libs/internal": "0.1.3"
4+
"libs/common": "0.3.1",
5+
"libs/internal": "0.1.4"
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.1](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-client-v3.0.0...launchdarkly-cpp-client-v3.0.1) (2023-06-08)
6+
7+
8+
### Bug Fixes
9+
10+
* enforce minimum polling interval of 5 minutes ([#144](https://github.com/launchdarkly/cpp-sdks/issues/144)) ([2d60197](https://github.com/launchdarkly/cpp-sdks/commit/2d60197a72624b40088c0cac22d2dda0f30dd7ac))
11+
* ensure x-launchdarkly-tags is sent in event requests ([#145](https://github.com/launchdarkly/cpp-sdks/issues/145)) ([c8b3aee](https://github.com/launchdarkly/cpp-sdks/commit/c8b3aee72b1ca3d33a7f614822c23f2fee6a093a))
12+
13+
14+
### Dependencies
15+
16+
* The following workspace dependencies were updated
17+
* dependencies
18+
* launchdarkly-cpp-internal bumped from 0.1.3 to 0.1.4
19+
* launchdarkly-cpp-common bumped from 0.3.0 to 0.3.1
20+
521
## [3.0.0](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-client-v0.2.0...launchdarkly-cpp-client-v3.0.0) (2023-06-01)
622

723

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.0"; // {x-release-please-version}
327+
"3.0.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,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.0",
4+
"version": "3.0.1",
55
"private": true,
66
"dependencies": {
7-
"launchdarkly-cpp-internal": "0.1.3",
8-
"launchdarkly-cpp-common": "0.3.0"
7+
"launchdarkly-cpp-internal": "0.1.4",
8+
"launchdarkly-cpp-common": "0.3.1"
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
@@ -25,7 +25,7 @@ TEST(ClientBindings, MinimalInstantiation) {
2525

2626
char const* version = LDClientSDK_Version();
2727
ASSERT_TRUE(version);
28-
ASSERT_STREQ(version, "3.0.0"); // {x-release-please-version}
28+
ASSERT_STREQ(version, "3.0.1"); // {x-release-please-version}
2929

3030
LDClientSDK_Free(sdk);
3131
}

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

2222
TEST(ClientTest, AllFlagsIsEmpty) {

libs/common/CHANGELOG.md

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

3+
## [0.3.1](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-common-v0.3.0...launchdarkly-cpp-common-v0.3.1) (2023-06-08)
4+
5+
6+
### Bug Fixes
7+
8+
* enforce minimum polling interval of 5 minutes ([#144](https://github.com/launchdarkly/cpp-sdks/issues/144)) ([2d60197](https://github.com/launchdarkly/cpp-sdks/commit/2d60197a72624b40088c0cac22d2dda0f30dd7ac))
9+
* ensure x-launchdarkly-tags is sent in event requests ([#145](https://github.com/launchdarkly/cpp-sdks/issues/145)) ([c8b3aee](https://github.com/launchdarkly/cpp-sdks/commit/c8b3aee72b1ca3d33a7f614822c23f2fee6a093a))
10+
311
## [0.3.0](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-common-v0.2.0...launchdarkly-cpp-common-v0.3.0) (2023-06-01)
412

513

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.0",
4+
"version": "0.3.1",
55
"private": true,
66
"dependencies": {
77
"launchdarkly-cpp-sse-client": "0.1.0"

libs/internal/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,12 @@
1616
* dependencies
1717
* launchdarkly-cpp-common bumped from 0.2.0 to 0.3.0
1818

19+
### Dependencies
20+
21+
* The following workspace dependencies were updated
22+
* dependencies
23+
* launchdarkly-cpp-common bumped from 0.3.0 to 0.3.1
24+
1925
## 0.1.0 (2023-05-24)
2026

2127

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.3",
4+
"version": "0.1.4",
55
"private": true,
66
"dependencies": {
7-
"launchdarkly-cpp-common": "0.3.0"
7+
"launchdarkly-cpp-common": "0.3.1"
88
}
99
}

0 commit comments

Comments
 (0)