Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/build-docs/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.1.0"
".": "1.0.0"
}
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion src/Provider.php
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down