diff --git a/.github/actions/build-docs/action.yml b/.github/actions/build-docs/action.yml index 95ef26eb..47bb7000 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.7.0" # x-release-please-version + --title "LaunchDarkly PHP SDK 6.8.0" # x-release-please-version diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 5c63699c..e85ec109 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "6.7.0" + ".": "6.8.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 31d51645..9fd7c680 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ All notable changes to the LaunchDarkly PHP SDK will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org). +## [6.8.0](https://github.com/launchdarkly/php-server-sdk/compare/6.7.0...6.8.0) (2026-04-28) + + +### Features + +* add hooks support ([#240](https://github.com/launchdarkly/php-server-sdk/issues/240)) ([77a644d](https://github.com/launchdarkly/php-server-sdk/commit/77a644de60421f44077d51023bbc0ba29c631d91)) +* expose environmentId on EvaluationSeriesContext ([#242](https://github.com/launchdarkly/php-server-sdk/issues/242)) ([5fcbce4](https://github.com/launchdarkly/php-server-sdk/commit/5fcbce42d4d100a4b81193a99d755ffd6bcb618d)) + ## [6.7.0](https://github.com/launchdarkly/php-server-sdk/compare/6.6.2...6.7.0) (2026-02-23) diff --git a/src/LaunchDarkly/LDClient.php b/src/LaunchDarkly/LDClient.php index 685093eb..10d60ded 100644 --- a/src/LaunchDarkly/LDClient.php +++ b/src/LaunchDarkly/LDClient.php @@ -45,7 +45,7 @@ class LDClient * The current SDK version. * @var string */ - const VERSION = '6.7.0'; // x-release-please-version + const VERSION = '6.8.0'; // x-release-please-version protected string $_sdkKey; protected string $_baseUri;