From 10e2a20e7b95be9f1789cbbe06a177046c5ea217 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 13 Jun 2024 15:40:29 +0000 Subject: [PATCH] chore(main): release 1.0.0 --- .github/actions/build-docs/action.yml | 2 +- .release-please-manifest.json | 2 +- CHANGELOG.md | 15 +++++++++++++++ src/Provider.php | 2 +- 4 files changed, 18 insertions(+), 3 deletions(-) diff --git a/.github/actions/build-docs/action.yml b/.github/actions/build-docs/action.yml index 3736f3b..18cb8b0 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\\OpenFeature" \ - --title "LaunchDarkly\\OpenFeature 0.1.0" # x-release-please-version + --title "LaunchDarkly\\OpenFeature 1.0.0" # x-release-please-version diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 466df71..37fcefa 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.1.0" + ".": "1.0.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index d6451b4..86c5c8b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,5 +3,20 @@ All notable changes to the LaunchDarkly OpenFeature provider for the Server-Side SDK for PHP will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org). +## [1.0.0](https://github.com/launchdarkly/openfeature-php-server/compare/0.1.0...1.0.0) (2024-06-13) + + +### Features + +* **deps:** Require PHP 8.1+ ([#16](https://github.com/launchdarkly/openfeature-php-server/issues/16)) ([4556af2](https://github.com/launchdarkly/openfeature-php-server/commit/4556af25028828845bb1a5c7e4bb70d61917af00)) +* Provider constructor takes LDClient options instead of created client ([#14](https://github.com/launchdarkly/openfeature-php-server/issues/14)) ([924a9c1](https://github.com/launchdarkly/openfeature-php-server/commit/924a9c1b43c6b477201e077452b00e438e439947)) + + +### Miscellaneous Chores + +* Fix release please config file syntax ([#17](https://github.com/launchdarkly/openfeature-php-server/issues/17)) ([2fd7c06](https://github.com/launchdarkly/openfeature-php-server/commit/2fd7c0655e191fe85686ccab68b844672047bc52)) +* Set wrapper name and version on wrapped LDClient ([#15](https://github.com/launchdarkly/openfeature-php-server/issues/15)) ([597dbbc](https://github.com/launchdarkly/openfeature-php-server/commit/597dbbcb44bb73ea0f38f27c0c986879f3868457)) +* Update CODEOWNERS ([#9](https://github.com/launchdarkly/openfeature-php-server/issues/9)) ([ad3a465](https://github.com/launchdarkly/openfeature-php-server/commit/ad3a465be23cb68c0541ea7b8156bdc570013540)) + ## [0.1.0] - 2023-04-21 Initial beta release of the LaunchDarkly OpenFeature provider for the Server-Side SDK for PHP. diff --git a/src/Provider.php b/src/Provider.php index 8c587c8..66ae6b3 100644 --- a/src/Provider.php +++ b/src/Provider.php @@ -27,7 +27,7 @@ class Provider implements OpenFeatureProvider private EvaluationContextConverter $contextConverter; private ResolutionDetailsConverter $detailsConverter; - const VERSION = '0.1.0'; // x-release-please-version + const VERSION = '1.0.0'; // x-release-please-version /** * Instantiate a new instance of this provider, backed by the provided LDClient instance.