Skip to content

Commit

Permalink
chore: release main (#428)
Browse files Browse the repository at this point in the history
🤖 I have created a release *beep* *boop*
---


<details><summary>launchdarkly-cpp-client: 3.6.3</summary>

##
[3.6.3](launchdarkly-cpp-client-v3.6.2...launchdarkly-cpp-client-v3.6.3)
(2024-07-25)


### Dependencies

* The following workspace dependencies were updated
  * dependencies
    * launchdarkly-cpp-sse-client bumped from 0.5.1 to 0.5.2
</details>

<details><summary>launchdarkly-cpp-server: 3.5.3</summary>

##
[3.5.3](launchdarkly-cpp-server-v3.5.2...launchdarkly-cpp-server-v3.5.3)
(2024-07-25)


### Dependencies

* The following workspace dependencies were updated
  * dependencies
    * launchdarkly-cpp-sse-client bumped from 0.5.1 to 0.5.2
</details>

<details><summary>launchdarkly-cpp-server-redis-source: 2.1.11</summary>

##
[2.1.11](launchdarkly-cpp-server-redis-source-v2.1.10...launchdarkly-cpp-server-redis-source-v2.1.11)
(2024-07-25)


### Dependencies

* The following workspace dependencies were updated
  * dependencies
    * launchdarkly-cpp-server bumped from 3.5.2 to 3.5.3
</details>

<details><summary>launchdarkly-cpp-sse-client: 0.5.2</summary>

##
[0.5.2](launchdarkly-cpp-sse-client-v0.5.1...launchdarkly-cpp-sse-client-v0.5.2)
(2024-07-25)


### Bug Fixes

* Handle exception closing stream for unavailable adapter on windows.
([#427](#427))
([ae0013c](ae0013c))
</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>
  • Loading branch information
github-actions[bot] committed Jul 25, 2024
1 parent ae0013c commit 4324e66
Show file tree
Hide file tree
Showing 18 changed files with 54 additions and 20 deletions.
8 changes: 4 additions & 4 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"libs/client-sdk": "3.6.2",
"libs/server-sent-events": "0.5.1",
"libs/client-sdk": "3.6.3",
"libs/server-sent-events": "0.5.2",
"libs/common": "1.7.0",
"libs/internal": "0.8.1",
"libs/server-sdk": "3.5.2",
"libs/server-sdk-redis-source": "2.1.10"
"libs/server-sdk": "3.5.3",
"libs/server-sdk-redis-source": "2.1.11"
}
9 changes: 9 additions & 0 deletions libs/client-sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## [3.6.3](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-client-v3.6.2...launchdarkly-cpp-client-v3.6.3) (2024-07-25)


### Dependencies

* The following workspace dependencies were updated
* dependencies
* launchdarkly-cpp-sse-client bumped from 0.5.1 to 0.5.2

## [3.6.2](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-client-v3.6.1...launchdarkly-cpp-client-v3.6.2) (2024-07-15)


Expand Down
2 changes: 1 addition & 1 deletion libs/client-sdk/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ cmake_minimum_required(VERSION 3.19)

project(
LaunchDarklyCPPClient
VERSION 3.6.2 # {x-release-please-version}
VERSION 3.6.3 # {x-release-please-version}
DESCRIPTION "LaunchDarkly C++ Client SDK"
LANGUAGES CXX C
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ class Client : public IClient {

private:
inline static char const* const kVersion =
"3.6.2"; // {x-release-please-version}
"3.6.3"; // {x-release-please-version}
std::unique_ptr<IClient> client;
};

Expand Down
4 changes: 2 additions & 2 deletions libs/client-sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "launchdarkly-cpp-client",
"description": "This package.json exists for modeling dependencies for the release process.",
"version": "3.6.2",
"version": "3.6.3",
"private": true,
"dependencies": {
"launchdarkly-cpp-internal": "0.8.1",
"launchdarkly-cpp-common": "1.7.0",
"launchdarkly-cpp-sse-client": "0.5.1"
"launchdarkly-cpp-sse-client": "0.5.2"
}
}
2 changes: 1 addition & 1 deletion libs/client-sdk/tests/client_c_bindings_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ TEST(ClientBindings, MinimalInstantiation) {

char const* version = LDClientSDK_Version();
ASSERT_TRUE(version);
ASSERT_STREQ(version, "3.6.2"); // {x-release-please-version}
ASSERT_STREQ(version, "3.6.3"); // {x-release-please-version}

LDClientSDK_Free(sdk);
}
Expand Down
2 changes: 1 addition & 1 deletion libs/client-sdk/tests/client_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ TEST(ClientTest, ClientConstructedWithMinimalConfigAndContext) {

char const* version = client.Version();
ASSERT_TRUE(version);
ASSERT_STREQ(version, "3.6.2"); // {x-release-please-version}
ASSERT_STREQ(version, "3.6.3"); // {x-release-please-version}
}

TEST(ClientTest, AllFlagsIsEmpty) {
Expand Down
9 changes: 9 additions & 0 deletions libs/server-sdk-redis-source/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## [2.1.11](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-server-redis-source-v2.1.10...launchdarkly-cpp-server-redis-source-v2.1.11) (2024-07-25)


### Dependencies

* The following workspace dependencies were updated
* dependencies
* launchdarkly-cpp-server bumped from 3.5.2 to 3.5.3

## [2.1.10](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-server-redis-source-v2.1.9...launchdarkly-cpp-server-redis-source-v2.1.10) (2024-07-15)


Expand Down
2 changes: 1 addition & 1 deletion libs/server-sdk-redis-source/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ cmake_minimum_required(VERSION 3.19)

project(
LaunchDarklyCPPServerRedisSource
VERSION 2.1.10 # {x-release-please-version}
VERSION 2.1.11 # {x-release-please-version}
DESCRIPTION "LaunchDarkly C++ Server SDK Redis Source"
LANGUAGES CXX C
)
Expand Down
4 changes: 2 additions & 2 deletions libs/server-sdk-redis-source/package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "launchdarkly-cpp-server-redis-source",
"description": "This package.json exists for modeling dependencies for the release process.",
"version": "2.1.10",
"version": "2.1.11",
"private": true,
"dependencies": {
"launchdarkly-cpp-server": "3.5.2"
"launchdarkly-cpp-server": "3.5.3"
}
}
9 changes: 9 additions & 0 deletions libs/server-sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## [3.5.3](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-server-v3.5.2...launchdarkly-cpp-server-v3.5.3) (2024-07-25)


### Dependencies

* The following workspace dependencies were updated
* dependencies
* launchdarkly-cpp-sse-client bumped from 0.5.1 to 0.5.2

## [3.5.2](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-server-v3.5.1...launchdarkly-cpp-server-v3.5.2) (2024-07-15)


Expand Down
2 changes: 1 addition & 1 deletion libs/server-sdk/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ cmake_minimum_required(VERSION 3.19)

project(
LaunchDarklyCPPServer
VERSION 3.5.2 # {x-release-please-version}
VERSION 3.5.3 # {x-release-please-version}
DESCRIPTION "LaunchDarkly C++ Server SDK"
LANGUAGES CXX C
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ class Client : public IClient {

private:
inline static char const* const kVersion =
"3.5.2"; // {x-release-please-version}
"3.5.3"; // {x-release-please-version}
std::unique_ptr<IClient> client;
};

Expand Down
4 changes: 2 additions & 2 deletions libs/server-sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "launchdarkly-cpp-server",
"description": "This package.json exists for modeling dependencies for the release process.",
"version": "3.5.2",
"version": "3.5.3",
"private": true,
"dependencies": {
"launchdarkly-cpp-internal": "0.8.1",
"launchdarkly-cpp-common": "1.7.0",
"launchdarkly-cpp-sse-client": "0.5.1"
"launchdarkly-cpp-sse-client": "0.5.2"
}
}
2 changes: 1 addition & 1 deletion libs/server-sdk/tests/client_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class ClientTest : public ::testing::Test {
TEST_F(ClientTest, ClientConstructedWithMinimalConfigAndContextT) {
char const* version = client_.Version();
ASSERT_TRUE(version);
ASSERT_STREQ(version, "3.5.2"); // {x-release-please-version}
ASSERT_STREQ(version, "3.5.3"); // {x-release-please-version}
}

TEST_F(ClientTest, BoolVariationDefaultPassesThrough) {
Expand Down
2 changes: 1 addition & 1 deletion libs/server-sdk/tests/server_c_bindings_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ TEST(ClientBindings, MinimalInstantiation) {

char const* version = LDServerSDK_Version();
ASSERT_TRUE(version);
ASSERT_STREQ(version, "3.5.2"); // {x-release-please-version}
ASSERT_STREQ(version, "3.5.3"); // {x-release-please-version}

LDServerSDK_Free(sdk);
}
Expand Down
7 changes: 7 additions & 0 deletions libs/server-sent-events/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.5.2](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-sse-client-v0.5.1...launchdarkly-cpp-sse-client-v0.5.2) (2024-07-25)


### Bug Fixes

* Handle exception closing stream for unavailable adapter on windows. ([#427](https://github.com/launchdarkly/cpp-sdks/issues/427)) ([ae0013c](https://github.com/launchdarkly/cpp-sdks/commit/ae0013cc0fa1d186e3d8cc9c624dc9496ca67472))

## [0.5.1](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-sse-client-v0.5.0...launchdarkly-cpp-sse-client-v0.5.1) (2024-07-15)


Expand Down
2 changes: 1 addition & 1 deletion libs/server-sent-events/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"name": "launchdarkly-cpp-sse-client",
"description": "This package.json exists for modeling dependencies for the release process.",
"private": true,
"version": "0.5.1",
"version": "0.5.2",
"dependencies": {}
}

0 comments on commit 4324e66

Please sign in to comment.