From 7986883f3602061609b2ca836e4bffa612b31013 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 16 Aug 2023 17:19:02 +0000 Subject: [PATCH 1/3] chore: release main --- .release-please-manifest.json | 6 +++--- libs/client-sdk/CHANGELOG.md | 7 +++++++ libs/client-sdk/package.json | 6 +++--- libs/common/CHANGELOG.md | 7 +++++++ libs/common/package.json | 2 +- libs/internal/CHANGELOG.md | 6 ++++++ libs/internal/package.json | 4 ++-- 7 files changed, 29 insertions(+), 9 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index eb0caa68a..0eb5715bc 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,6 +1,6 @@ { - "libs/client-sdk": "3.0.3", + "libs/client-sdk": "3.0.4", "libs/server-sent-events": "0.1.1", - "libs/common": "0.3.2", - "libs/internal": "0.1.5" + "libs/common": "0.3.3", + "libs/internal": "0.1.6" } diff --git a/libs/client-sdk/CHANGELOG.md b/libs/client-sdk/CHANGELOG.md index 51c86eafc..075b05b7b 100644 --- a/libs/client-sdk/CHANGELOG.md +++ b/libs/client-sdk/CHANGELOG.md @@ -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). +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * launchdarkly-cpp-internal bumped from 0.1.5 to 0.1.6 + * launchdarkly-cpp-common bumped from 0.3.2 to 0.3.3 + ## [3.0.3](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-client-v3.0.2...launchdarkly-cpp-client-v3.0.3) (2023-07-14) diff --git a/libs/client-sdk/package.json b/libs/client-sdk/package.json index 0016b3e5a..00e81843d 100644 --- a/libs/client-sdk/package.json +++ b/libs/client-sdk/package.json @@ -1,10 +1,10 @@ { "name": "launchdarkly-cpp-client", "description": "This package.json exists for modeling dependencies for the release process.", - "version": "3.0.3", + "version": "3.0.4", "private": true, "dependencies": { - "launchdarkly-cpp-internal": "0.1.5", - "launchdarkly-cpp-common": "0.3.2" + "launchdarkly-cpp-internal": "0.1.6", + "launchdarkly-cpp-common": "0.3.3" } } diff --git a/libs/common/CHANGELOG.md b/libs/common/CHANGELOG.md index 4c55a32d5..70240cb23 100644 --- a/libs/common/CHANGELOG.md +++ b/libs/common/CHANGELOG.md @@ -6,6 +6,13 @@ * dependencies * launchdarkly-cpp-sse-client bumped from 0.1.0 to 0.1.1 +## [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) + + +### Bug Fixes + +* Fixes required to run with msvc 14.1 (vs2017) ([#195](https://github.com/launchdarkly/cpp-sdks/issues/195)) ([d16b2ea](https://github.com/launchdarkly/cpp-sdks/commit/d16b2ea1131b2a99efcec99b96c90b9384c33dc7)) + ## [0.3.1](https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-common-v0.3.0...launchdarkly-cpp-common-v0.3.1) (2023-06-08) diff --git a/libs/common/package.json b/libs/common/package.json index cc60f7eba..48a576aa7 100644 --- a/libs/common/package.json +++ b/libs/common/package.json @@ -1,7 +1,7 @@ { "name": "launchdarkly-cpp-common", "description": "This package.json exists for modeling dependencies for the release process.", - "version": "0.3.2", + "version": "0.3.3", "private": true, "dependencies": { "launchdarkly-cpp-sse-client": "0.1.1" diff --git a/libs/internal/CHANGELOG.md b/libs/internal/CHANGELOG.md index bf568b165..28b9c3259 100644 --- a/libs/internal/CHANGELOG.md +++ b/libs/internal/CHANGELOG.md @@ -22,6 +22,12 @@ * dependencies * launchdarkly-cpp-common bumped from 0.3.0 to 0.3.1 +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * launchdarkly-cpp-common bumped from 0.3.2 to 0.3.3 + ## [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) diff --git a/libs/internal/package.json b/libs/internal/package.json index fabf596f3..380779601 100644 --- a/libs/internal/package.json +++ b/libs/internal/package.json @@ -1,9 +1,9 @@ { "name": "launchdarkly-cpp-internal", "description": "This package.json exists for modeling dependencies for the release process.", - "version": "0.1.5", + "version": "0.1.6", "private": true, "dependencies": { - "launchdarkly-cpp-common": "0.3.2" + "launchdarkly-cpp-common": "0.3.3" } } From a14790a6059749dcfcc335e0e1ed3c3dc54c4639 Mon Sep 17 00:00:00 2001 From: Ryan Lamb <4955475+kinyoklion@users.noreply.github.com> Date: Wed, 16 Aug 2023 10:33:17 -0700 Subject: [PATCH 2/3] Update CHANGELOG.md --- libs/client-sdk/CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/libs/client-sdk/CHANGELOG.md b/libs/client-sdk/CHANGELOG.md index 075b05b7b..91904e42f 100644 --- a/libs/client-sdk/CHANGELOG.md +++ b/libs/client-sdk/CHANGELOG.md @@ -2,6 +2,11 @@ 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.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 +Fixes required to run with msvc 14.1 (vs2017) (https://github.com/launchdarkly/cpp-sdks/issues/195) ([d16b2ea](https://github.com/launchdarkly/cpp-sdks/commit/d16b2ea1131b2a99efcec99b96c90b9384c33dc7)) + ### Dependencies * The following workspace dependencies were updated From 44c6182c8b5a17c97f5e489be76273d13b4dd831 Mon Sep 17 00:00:00 2001 From: Ryan Lamb <4955475+kinyoklion@users.noreply.github.com> Date: Wed, 16 Aug 2023 10:33:42 -0700 Subject: [PATCH 3/3] Update CHANGELOG.md --- libs/client-sdk/CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/client-sdk/CHANGELOG.md b/libs/client-sdk/CHANGELOG.md index 91904e42f..847df7834 100644 --- a/libs/client-sdk/CHANGELOG.md +++ b/libs/client-sdk/CHANGELOG.md @@ -2,7 +2,7 @@ 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.4] (https://github.com/launchdarkly/cpp-sdks/compare/launchdarkly-cpp-client-v3.0.3...launchdarkly-cpp-client-v3.0.4) (2023-08-16) +## [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 Fixes required to run with msvc 14.1 (vs2017) (https://github.com/launchdarkly/cpp-sdks/issues/195) ([d16b2ea](https://github.com/launchdarkly/cpp-sdks/commit/d16b2ea1131b2a99efcec99b96c90b9384c33dc7))