Skip to content

Commit

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


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

### Dependencies

* The following workspace dependencies were updated
  * dependencies
    * launchdarkly-cpp-internal bumped from 0.3.0 to 0.4.0
    * launchdarkly-cpp-common bumped from 0.5.0 to 1.0.0
</details>

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

##
[1.0.0](launchdarkly-cpp-common-v0.5.0...launchdarkly-cpp-common-v1.0.0)
(2023-11-29)


### ⚠ BREAKING CHANGES

* move server side config into lib/server
([#283](#283))

### Code Refactoring

* move server side config into lib/server
([#283](#283))
([c58de8f](c58de8f))
</details>

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

##
[0.4.0](launchdarkly-cpp-internal-v0.3.0...launchdarkly-cpp-internal-v0.4.0)
(2023-11-29)


### Features

* omit empty items from data model JSON serialization
([#309](#309))
([9141732](9141732))


### Dependencies

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

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

##
[0.2.0](launchdarkly-cpp-server-v0.1.0...launchdarkly-cpp-server-v0.2.0)
(2023-11-29)


### ⚠ BREAKING CHANGES

* move server side config into lib/server
([#283](#283))

### Code Refactoring

* move server side config into lib/server
([#283](#283))
([c58de8f](c58de8f))


### Dependencies

* The following workspace dependencies were updated
  * dependencies
    * launchdarkly-cpp-internal bumped from 0.3.0 to 0.4.0
    * launchdarkly-cpp-common bumped from 0.5.0 to 1.0.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: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Casey Waldren <[email protected]>
  • Loading branch information
github-actions[bot] and cwaldren-ld authored Nov 29, 2023
1 parent bf73632 commit b0ffc67
Show file tree
Hide file tree
Showing 17 changed files with 72 additions and 21 deletions.
8 changes: 4 additions & 4 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"libs/client-sdk": "3.2.1",
"libs/client-sdk": "3.2.2",
"libs/server-sent-events": "0.2.0",
"libs/common": "0.5.0",
"libs/internal": "0.3.0",
"libs/server-sdk": "0.1.0"
"libs/common": "1.0.0",
"libs/internal": "0.4.0",
"libs/server-sdk": "0.2.0"
}
7 changes: 7 additions & 0 deletions libs/client-sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,13 @@ All notable changes to the LaunchDarkly Client-Side SDK for C/C++ will be docume
* dependencies
* launchdarkly-cpp-internal bumped from 0.1.9 to 0.1.10

### Dependencies

* The following workspace dependencies were updated
* dependencies
* launchdarkly-cpp-internal bumped from 0.3.0 to 0.4.0
* launchdarkly-cpp-common bumped from 0.5.0 to 1.0.0

## [3.2.1](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-client-v3.2.0...launchdarkly-cpp-client-v3.2.1) (2023-10-23)


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.2.1 # {x-release-please-version}
VERSION 3.2.2 # {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.2.1"; // {x-release-please-version}
"3.2.2"; // {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.2.1",
"version": "3.2.2",
"private": true,
"dependencies": {
"launchdarkly-cpp-internal": "0.3.0",
"launchdarkly-cpp-common": "0.5.0",
"launchdarkly-cpp-internal": "0.4.0",
"launchdarkly-cpp-common": "1.0.0",
"launchdarkly-cpp-sse-client": "0.2.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.2.1"); // {x-release-please-version}
ASSERT_STREQ(version, "3.2.2"); // {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.2.1"); // {x-release-please-version}
ASSERT_STREQ(version, "3.2.2"); // {x-release-please-version}
}

TEST(ClientTest, AllFlagsIsEmpty) {
Expand Down
11 changes: 11 additions & 0 deletions libs/common/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,17 @@
* dependencies
* launchdarkly-cpp-sse-client bumped from 0.1.1 to 0.1.2

## [1.0.0](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-common-v0.5.0...launchdarkly-cpp-common-v1.0.0) (2023-11-29)


### ⚠ BREAKING CHANGES

* move server side config into lib/server ([#283](https://github.com/launchdarkly/cpp-sdks/issues/283))

### Code Refactoring

* move server side config into lib/server ([#283](https://github.com/launchdarkly/cpp-sdks/issues/283)) ([c58de8f](https://github.com/launchdarkly/cpp-sdks/commit/c58de8f3914bf83fa8662cccf5b284de3179852d))

## [0.5.0](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-common-v0.4.0...launchdarkly-cpp-common-v0.5.0) (2023-10-23)


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": "0.5.0",
"version": "1.0.0",
"private": true
}
14 changes: 14 additions & 0 deletions libs/internal/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,20 @@
* dependencies
* launchdarkly-cpp-common bumped from 0.3.5 to 0.3.6

## [0.4.0](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-internal-v0.3.0...launchdarkly-cpp-internal-v0.4.0) (2023-11-29)


### Features

* omit empty items from data model JSON serialization ([#309](https://github.com/launchdarkly/cpp-sdks/issues/309)) ([9141732](https://github.com/launchdarkly/cpp-sdks/commit/9141732e7ec1c42481e52f61da3d726740f17595))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* launchdarkly-cpp-common bumped from 0.5.0 to 1.0.0

## [0.3.0](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-internal-v0.2.0...launchdarkly-cpp-internal-v0.3.0) (2023-10-23)


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.3.0",
"version": "0.4.0",
"private": true,
"dependencies": {
"launchdarkly-cpp-common": "0.5.0"
"launchdarkly-cpp-common": "1.0.0"
}
}
19 changes: 19 additions & 0 deletions libs/server-sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# Changelog

## [0.2.0](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-server-v0.1.0...launchdarkly-cpp-server-v0.2.0) (2023-11-29)


### ⚠ BREAKING CHANGES

* move server side config into lib/server ([#283](https://github.com/launchdarkly/cpp-sdks/issues/283))

### Code Refactoring

* move server side config into lib/server ([#283](https://github.com/launchdarkly/cpp-sdks/issues/283)) ([c58de8f](https://github.com/launchdarkly/cpp-sdks/commit/c58de8f3914bf83fa8662cccf5b284de3179852d))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* launchdarkly-cpp-internal bumped from 0.3.0 to 0.4.0
* launchdarkly-cpp-common bumped from 0.5.0 to 1.0.0

## 0.1.0 (2023-10-25)


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 0.1.0 # {x-release-please-version}
VERSION 0.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 =
"0.1.0"; // {x-release-please-version}
"0.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": "0.1.0",
"version": "0.2.0",
"private": true,
"dependencies": {
"launchdarkly-cpp-internal": "0.3.0",
"launchdarkly-cpp-common": "0.5.0",
"launchdarkly-cpp-internal": "0.4.0",
"launchdarkly-cpp-common": "1.0.0",
"launchdarkly-cpp-sse-client": "0.2.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, "0.1.0"); // {x-release-please-version}
ASSERT_STREQ(version, "0.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 @@ -23,7 +23,7 @@ TEST(ClientBindings, MinimalInstantiation) {

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

LDServerSDK_Free(sdk);
}
Expand Down

0 comments on commit b0ffc67

Please sign in to comment.