From c02b6d9d12c2c72188b71e1b9bf526279eecc2ba Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 23 Jan 2024 18:00:20 +0000 Subject: [PATCH] chore(5.x): release 5.2.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 7 +++++++ src/LaunchDarkly/LDClient.php | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index b5e91573..684bdbed 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "5.2.0" + ".": "5.2.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 9b9919aa..8c1e4b71 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ All notable changes to the LaunchDarkly PHP SDK will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org). +## [5.2.1](https://github.com/launchdarkly/php-server-sdk/compare/5.2.0...5.2.1) (2024-01-23) + + +### Bug Fixes + +* Remove noisy log message about missing guzzle cache middleware ([#195](https://github.com/launchdarkly/php-server-sdk/issues/195)) ([d1119dd](https://github.com/launchdarkly/php-server-sdk/commit/d1119dd3c7d0bbe5375b05b9bfc74280844fb957)) + ## [5.2.0] - 2023-10-23 ### Deprecated: - `LDUser` is now deprecated in favor of `LDContext`. diff --git a/src/LaunchDarkly/LDClient.php b/src/LaunchDarkly/LDClient.php index aaecceba..428b8477 100644 --- a/src/LaunchDarkly/LDClient.php +++ b/src/LaunchDarkly/LDClient.php @@ -34,7 +34,7 @@ class LDClient * The current SDK version. * @var string */ - const VERSION = '5.2.0'; // x-release-please-version + const VERSION = '5.2.1'; // x-release-please-version protected string $_sdkKey; protected string $_baseUri;