diff --git a/.github/actions/build-docs/action.yml b/.github/actions/build-docs/action.yml index 8cc61fdc..de2229a3 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.2.0" # x-release-please-version + --title "LaunchDarkly PHP SDK 6.3.0" # x-release-please-version diff --git a/.release-please-manifest.json b/.release-please-manifest.json index e1e352c1..5c753b44 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "6.2.0" + ".": "6.3.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 9bf15dd4..f45f89e0 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.3.0](https://github.com/launchdarkly/php-server-sdk/compare/6.2.0...6.3.0) (2024-10-22) + + +### Features + +* Add support for client-side prerequisite events ([#210](https://github.com/launchdarkly/php-server-sdk/issues/210)) ([a940b34](https://github.com/launchdarkly/php-server-sdk/commit/a940b342352c88ad899ef867b2e3093eb6374666)) + ## [6.2.0](https://github.com/launchdarkly/php-server-sdk/compare/6.1.0...6.2.0) (2024-06-11) diff --git a/src/LaunchDarkly/LDClient.php b/src/LaunchDarkly/LDClient.php index 382b2ed1..897a77f3 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.2.0'; // x-release-please-version + const VERSION = '6.3.0'; // x-release-please-version protected string $_sdkKey; protected string $_baseUri;