Skip to content

Commit

Permalink
chore: release main (#219)
Browse files Browse the repository at this point in the history
🤖 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>
  • Loading branch information
github-actions[bot] authored Aug 28, 2023
1 parent 6c263dd commit d3e9890
Show file tree
Hide file tree
Showing 11 changed files with 41 additions and 13 deletions.
6 changes: 3 additions & 3 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"libs/client-sdk": "3.0.4",
"libs/client-sdk": "3.0.5",
"libs/server-sent-events": "0.1.1",
"libs/common": "0.3.3",
"libs/internal": "0.1.6"
"libs/common": "0.3.4",
"libs/internal": "0.1.7"
}
15 changes: 15 additions & 0 deletions libs/client-sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,21 @@

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).

## [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)


### Bug Fixes

* initialization of LDFlagListener ([#218](https://github.com/launchdarkly/cpp-sdks/issues/218)) ([6c263dd](https://github.com/launchdarkly/cpp-sdks/commit/6c263dd9110e4da188a56cabc54f783190e1114c))


### 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

## [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)

### Bug Fixes
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.0.3 # {x-release-please-version}
VERSION 3.0.5 # {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.0.3"; // {x-release-please-version}
"3.0.5"; // {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,10 +1,10 @@
{
"name": "launchdarkly-cpp-client",
"description": "This package.json exists for modeling dependencies for the release process.",
"version": "3.0.4",
"version": "3.0.5",
"private": true,
"dependencies": {
"launchdarkly-cpp-internal": "0.1.6",
"launchdarkly-cpp-common": "0.3.3"
"launchdarkly-cpp-internal": "0.1.7",
"launchdarkly-cpp-common": "0.3.4"
}
}
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.0.3"); // {x-release-please-version}
ASSERT_STREQ(version, "3.0.5"); // {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.0.3"); // {x-release-please-version}
ASSERT_STREQ(version, "3.0.5"); // {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
Expand Up @@ -6,6 +6,13 @@
* dependencies
* launchdarkly-cpp-sse-client bumped from 0.1.0 to 0.1.1

## [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)


### Bug Fixes

* initialization of LDFlagListener ([#218](https://github.com/launchdarkly/cpp-sdks/issues/218)) ([6c263dd](https://github.com/launchdarkly/cpp-sdks/commit/6c263dd9110e4da188a56cabc54f783190e1114c))

## [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)


Expand Down
2 changes: 1 addition & 1 deletion libs/common/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "launchdarkly-cpp-common",
"description": "This package.json exists for modeling dependencies for the release process.",
"version": "0.3.3",
"version": "0.3.4",
"private": true,
"dependencies": {
"launchdarkly-cpp-sse-client": "0.1.1"
Expand Down
6 changes: 6 additions & 0 deletions libs/internal/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,12 @@
* dependencies
* launchdarkly-cpp-common bumped from 0.3.2 to 0.3.3

### Dependencies

* The following workspace dependencies were updated
* dependencies
* launchdarkly-cpp-common bumped from 0.3.3 to 0.3.4

## [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)


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.1.6",
"version": "0.1.7",
"private": true,
"dependencies": {
"launchdarkly-cpp-common": "0.3.3"
"launchdarkly-cpp-common": "0.3.4"
}
}

0 comments on commit d3e9890

Please sign in to comment.