Skip to content

Commit

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


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

##
[3.3.3](launchdarkly-cpp-client-v3.3.2...launchdarkly-cpp-client-v3.3.3)
(2023-12-22)


### Dependencies

* The following workspace dependencies were updated
  * dependencies
    * launchdarkly-cpp-internal bumped from 0.5.2 to 0.5.3
    * launchdarkly-cpp-common bumped from 1.3.0 to 1.4.0
</details>

<details><summary>launchdarkly-cpp-common: 1.4.0</summary>

##
[1.4.0](launchdarkly-cpp-common-v1.3.0...launchdarkly-cpp-common-v1.4.0)
(2023-12-22)


### Features

* add C binding for Context::CanonicalKey()
([#349](#349))
([319a3ee](319a3ee))
</details>

<details><summary>launchdarkly-cpp-internal: 0.5.3</summary>

##
[0.5.3](launchdarkly-cpp-internal-v0.5.2...launchdarkly-cpp-internal-v0.5.3)
(2023-12-22)


### Dependencies

* The following workspace dependencies were updated
  * dependencies
    * launchdarkly-cpp-common bumped from 1.3.0 to 1.4.0
</details>

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

##
[3.2.0](launchdarkly-cpp-server-v3.1.0...launchdarkly-cpp-server-v3.2.0)
(2023-12-22)


### Features

* redis data source C bindings
([#345](#345))
([03b7de1](03b7de1))


### Dependencies

* The following workspace dependencies were updated
  * dependencies
    * launchdarkly-cpp-internal bumped from 0.5.2 to 0.5.3
    * launchdarkly-cpp-common bumped from 1.3.0 to 1.4.0
</details>

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

##
[2.0.0](launchdarkly-cpp-server-redis-source-v1.0.2...launchdarkly-cpp-server-redis-source-v2.0.0)
(2023-12-22)


### ⚠ BREAKING CHANGES

* RedisDataSource::Create should return unique_ptr instead of shared_ptr
([#344](#344))

### Features

* redis data source C bindings
([#345](#345))
([03b7de1](03b7de1))
* RedisDataSource::Create should return unique_ptr instead of shared_ptr
([#344](#344))
([07661c4](07661c4))


### Dependencies

* The following workspace dependencies were updated
  * dependencies
    * launchdarkly-cpp-server bumped from 3.1.0 to 3.2.0
</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: Casey Waldren <[email protected]>
  • Loading branch information
github-actions[bot] and cwaldren-ld authored Dec 22, 2023
1 parent 319a3ee commit 34cafc6
Show file tree
Hide file tree
Showing 20 changed files with 85 additions and 25 deletions.
10 changes: 5 additions & 5 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"libs/client-sdk": "3.3.2",
"libs/client-sdk": "3.3.3",
"libs/server-sent-events": "0.3.0",
"libs/common": "1.3.0",
"libs/internal": "0.5.2",
"libs/server-sdk": "3.1.0",
"libs/server-sdk-redis-source": "1.0.2"
"libs/common": "1.4.0",
"libs/internal": "0.5.3",
"libs/server-sdk": "3.2.0",
"libs/server-sdk-redis-source": "2.0.0"
}
10 changes: 10 additions & 0 deletions libs/client-sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## [3.3.3](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-client-v3.3.2...launchdarkly-cpp-client-v3.3.3) (2023-12-22)


### Dependencies

* The following workspace dependencies were updated
* dependencies
* launchdarkly-cpp-internal bumped from 0.5.2 to 0.5.3
* launchdarkly-cpp-common bumped from 1.3.0 to 1.4.0

## [3.3.2](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-client-v3.3.1...launchdarkly-cpp-client-v3.3.2) (2023-12-21)


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.3.2 # {x-release-please-version}
VERSION 3.3.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 @@ -324,7 +324,7 @@ class Client : public IClient {

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

Expand Down
6 changes: 3 additions & 3 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.3.2",
"version": "3.3.3",
"private": true,
"dependencies": {
"launchdarkly-cpp-internal": "0.5.2",
"launchdarkly-cpp-common": "1.3.0",
"launchdarkly-cpp-internal": "0.5.3",
"launchdarkly-cpp-common": "1.4.0",
"launchdarkly-cpp-sse-client": "0.3.0"
}
}
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.3.2"); // {x-release-please-version}
ASSERT_STREQ(version, "3.3.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.3.2"); // {x-release-please-version}
ASSERT_STREQ(version, "3.3.3"); // {x-release-please-version}
}

TEST(ClientTest, AllFlagsIsEmpty) {
Expand Down
7 changes: 7 additions & 0 deletions libs/common/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# Changelog


## [1.4.0](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-common-v1.3.0...launchdarkly-cpp-common-v1.4.0) (2023-12-22)


### Features

* add C binding for Context::CanonicalKey() ([#349](https://github.com/launchdarkly/cpp-sdks/issues/349)) ([319a3ee](https://github.com/launchdarkly/cpp-sdks/commit/319a3ee8e37bfa50364d09c1eb4d89f8489e30f6))

## [1.3.0](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-common-v1.2.0...launchdarkly-cpp-common-v1.3.0) (2023-12-21)


Expand Down
2 changes: 1 addition & 1 deletion libs/common/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "launchdarkly-cpp-common",
"description": "This package.json exists for modeling dependencies for the release process.",
"version": "1.3.0",
"version": "1.4.0",
"private": true
}
9 changes: 9 additions & 0 deletions libs/internal/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## [0.5.3](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-internal-v0.5.2...launchdarkly-cpp-internal-v0.5.3) (2023-12-22)


### Dependencies

* The following workspace dependencies were updated
* dependencies
* launchdarkly-cpp-common bumped from 1.3.0 to 1.4.0

## [0.5.2](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-internal-v0.5.1...launchdarkly-cpp-internal-v0.5.2) (2023-12-21)


Expand Down
4 changes: 2 additions & 2 deletions libs/internal/package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "launchdarkly-cpp-internal",
"description": "This package.json exists for modeling dependencies for the release process.",
"version": "0.5.2",
"version": "0.5.3",
"private": true,
"dependencies": {
"launchdarkly-cpp-common": "1.3.0"
"launchdarkly-cpp-common": "1.4.0"
}
}
19 changes: 19 additions & 0 deletions libs/server-sdk-redis-source/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# Changelog

## [2.0.0](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-server-redis-source-v1.0.2...launchdarkly-cpp-server-redis-source-v2.0.0) (2023-12-22)


### ⚠ BREAKING CHANGES

* RedisDataSource::Create should return unique_ptr instead of shared_ptr ([#344](https://github.com/launchdarkly/cpp-sdks/issues/344))

### Features

* redis data source C bindings ([#345](https://github.com/launchdarkly/cpp-sdks/issues/345)) ([03b7de1](https://github.com/launchdarkly/cpp-sdks/commit/03b7de195febdcd4739d670448f5aefcbc2e9a2d))
* RedisDataSource::Create should return unique_ptr instead of shared_ptr ([#344](https://github.com/launchdarkly/cpp-sdks/issues/344)) ([07661c4](https://github.com/launchdarkly/cpp-sdks/commit/07661c4a8a6571fdf04d016f5bad5e69fb10216e))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* launchdarkly-cpp-server bumped from 3.1.0 to 3.2.0

## [1.0.2](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-server-redis-source-v1.0.1...launchdarkly-cpp-server-redis-source-v1.0.2) (2023-12-21)


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 1.0.2 # {x-release-please-version}
VERSION 2.0.0 # {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": "1.0.2",
"version": "2.0.0",
"private": true,
"dependencies": {
"launchdarkly-cpp-server": "3.1.0"
"launchdarkly-cpp-server": "3.2.0"
}
}
15 changes: 15 additions & 0 deletions libs/server-sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

## [3.2.0](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-server-v3.1.0...launchdarkly-cpp-server-v3.2.0) (2023-12-22)


### Features

* redis data source C bindings ([#345](https://github.com/launchdarkly/cpp-sdks/issues/345)) ([03b7de1](https://github.com/launchdarkly/cpp-sdks/commit/03b7de195febdcd4739d670448f5aefcbc2e9a2d))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* launchdarkly-cpp-internal bumped from 0.5.2 to 0.5.3
* launchdarkly-cpp-common bumped from 1.3.0 to 1.4.0

## [3.1.0](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-server-v3.0.1...launchdarkly-cpp-server-v3.1.0) (2023-12-21)


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.1.0 # {x-release-please-version}
VERSION 3.2.0 # {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 @@ -348,7 +348,7 @@ class Client : public IClient {

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

Expand Down
6 changes: 3 additions & 3 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.1.0",
"version": "3.2.0",
"private": true,
"dependencies": {
"launchdarkly-cpp-internal": "0.5.2",
"launchdarkly-cpp-common": "1.3.0",
"launchdarkly-cpp-internal": "0.5.3",
"launchdarkly-cpp-common": "1.4.0",
"launchdarkly-cpp-sse-client": "0.3.0"
}
}
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.1.0"); // {x-release-please-version}
ASSERT_STREQ(version, "3.2.0"); // {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.1.0"); // {x-release-please-version}
ASSERT_STREQ(version, "3.2.0"); // {x-release-please-version}

LDServerSDK_Free(sdk);
}
Expand Down

0 comments on commit 34cafc6

Please sign in to comment.