From 1d7a8f24815c1fbb6b01ee58e0d7430c825c7e64 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 1 Dec 2023 22:45:33 +0000 Subject: [PATCH] chore(main): release 6.0.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 12 ++++++++++++ src/LaunchDarkly/LDClient.php | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index a3a12f49..601e9bed 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "6.0.0" + ".": "6.0.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 0b914639..ac3f10fe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,18 @@ All notable changes to the LaunchDarkly PHP SDK will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org). +## [6.0.1](https://github.com/launchdarkly/php-server-sdk/compare/6.0.0...6.0.1) (2023-12-01) + + +### Bug Fixes + +* **build:** Leverage .gitattributes to reduce package size ([#186](https://github.com/launchdarkly/php-server-sdk/issues/186)) ([b8cb035](https://github.com/launchdarkly/php-server-sdk/commit/b8cb03582b63cead74e45b50fa498380fb79cdd3)) + + +### Miscellaneous Chores + +* Fix package version in release please manifest ([#190](https://github.com/launchdarkly/php-server-sdk/issues/190)) ([cbdb529](https://github.com/launchdarkly/php-server-sdk/commit/cbdb5296569da112ec4d192c1d4805e7caf06c09)) + ## [6.0.0] - 2023-10-23 The latest version of this SDK supports the ability to manage migrations or modernizations, using migration flags. You might use this functionality if you are optimizing queries, upgrading to new tech stacks, migrating from one database to another, or other similar technology changes. Migration flags are part of LaunchDarkly's Early Access Program. This feature is available to all LaunchDarkly customers but may undergo additional changes before it is finalized. diff --git a/src/LaunchDarkly/LDClient.php b/src/LaunchDarkly/LDClient.php index 3d4c1307..572002eb 100644 --- a/src/LaunchDarkly/LDClient.php +++ b/src/LaunchDarkly/LDClient.php @@ -36,7 +36,7 @@ class LDClient * The current SDK version. * @var string */ - const VERSION = '6.0.0'; // x-release-please-version + const VERSION = '6.0.1'; // x-release-please-version protected string $_sdkKey; protected string $_baseUri;