diff --git a/.github/actions/build-docs/action.yml b/.github/actions/build-docs/action.yml index 915b2df5..0ea4c920 100644 --- a/.github/actions/build-docs/action.yml +++ b/.github/actions/build-docs/action.yml @@ -17,4 +17,4 @@ runs: --ignore-tags psalm-return \ --visibility public \ --defaultpackagename "LaunchDarkly" \ - --title "LaunchDarkly PHP SDK 6.4.0" # x-release-please-version + --title "LaunchDarkly PHP SDK 6.5.0" # x-release-please-version diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 8e67d254..b85605b8 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "6.4.0" + ".": "6.5.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index a8c5a277..7765cd04 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). +## [6.5.0](https://github.com/launchdarkly/php-server-sdk/compare/6.4.0...6.5.0) (2025-03-13) + + +### Features + +* Inline context for migration events ([#215](https://github.com/launchdarkly/php-server-sdk/issues/215)) ([99e9593](https://github.com/launchdarkly/php-server-sdk/commit/99e9593f48662ccca56fed046ff7603ef99dacc9)) + ## [6.4.0](https://github.com/launchdarkly/php-server-sdk/compare/6.3.0...6.4.0) (2025-01-17) diff --git a/src/LaunchDarkly/LDClient.php b/src/LaunchDarkly/LDClient.php index f859fa68..9bed69a5 100644 --- a/src/LaunchDarkly/LDClient.php +++ b/src/LaunchDarkly/LDClient.php @@ -39,7 +39,7 @@ class LDClient * The current SDK version. * @var string */ - const VERSION = '6.4.0'; // x-release-please-version + const VERSION = '6.5.0'; // x-release-please-version protected string $_sdkKey; protected string $_baseUri;