Skip to content

Commit

Permalink
chore: release main (#223)
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.6</summary>

##
[3.0.6](launchdarkly-cpp-client-v3.0.5...launchdarkly-cpp-client-v3.0.6)
(2023-08-29)


### Bug Fixes

* LDDataSourceStatusListener_Init should take pointer
([#222](#222))
([0aa3d14](0aa3d14))
</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 29, 2023
1 parent 0aa3d14 commit 410ed6c
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"libs/client-sdk": "3.0.5",
"libs/client-sdk": "3.0.6",
"libs/server-sent-events": "0.1.1",
"libs/common": "0.3.4",
"libs/internal": "0.1.7"
Expand Down
7 changes: 7 additions & 0 deletions libs/client-sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

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.6](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-client-v3.0.5...launchdarkly-cpp-client-v3.0.6) (2023-08-29)


### Bug Fixes

* LDDataSourceStatusListener_Init should take pointer ([#222](https://github.com/launchdarkly/cpp-sdks/issues/222)) ([0aa3d14](https://github.com/launchdarkly/cpp-sdks/commit/0aa3d1442cbfea3cc32d2ec981590137f0284a46))

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


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.5 # {x-release-please-version}
VERSION 3.0.6 # {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.5"; // {x-release-please-version}
"3.0.6"; // {x-release-please-version}
std::unique_ptr<IClient> client;
};

Expand Down
2 changes: 1 addition & 1 deletion libs/client-sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "launchdarkly-cpp-client",
"description": "This package.json exists for modeling dependencies for the release process.",
"version": "3.0.5",
"version": "3.0.6",
"private": true,
"dependencies": {
"launchdarkly-cpp-internal": "0.1.7",
Expand Down
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.5"); // {x-release-please-version}
ASSERT_STREQ(version, "3.0.6"); // {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.5"); // {x-release-please-version}
ASSERT_STREQ(version, "3.0.6"); // {x-release-please-version}
}

TEST(ClientTest, AllFlagsIsEmpty) {
Expand Down

0 comments on commit 410ed6c

Please sign in to comment.