Skip to content

Commit b83a4ed

Browse files
chore(main): release 1.0.0 (#11)
🤖 I have created a release *beep* *boop* --- ## [1.0.0](0.1.0...1.0.0) (2024-06-13) ### Features * **deps:** Require PHP 8.1+ ([#16](#16)) ([4556af2](4556af2)) * Provider constructor takes LDClient options instead of created client ([#14](#14)) ([924a9c1](924a9c1)) ### Miscellaneous Chores * Fix release please config file syntax ([#17](#17)) ([2fd7c06](2fd7c06)) * Set wrapper name and version on wrapped LDClient ([#15](#15)) ([597dbbc](597dbbc)) * Update CODEOWNERS ([#9](#9)) ([ad3a465](ad3a465)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 2fd7c06 commit b83a4ed

File tree

4 files changed

+18
-3
lines changed

4 files changed

+18
-3
lines changed

.github/actions/build-docs/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ runs:
1717
--ignore-tags psalm-return \
1818
--visibility public \
1919
--defaultpackagename "LaunchDarkly\\OpenFeature" \
20-
--title "LaunchDarkly\\OpenFeature 0.1.0" # x-release-please-version
20+
--title "LaunchDarkly\\OpenFeature 1.0.0" # x-release-please-version

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.1.0"
2+
".": "1.0.0"
33
}

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,20 @@
33
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).
44

55

6+
## [1.0.0](https://github.com/launchdarkly/openfeature-php-server/compare/0.1.0...1.0.0) (2024-06-13)
7+
8+
9+
### Features
10+
11+
* **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))
12+
* 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))
13+
14+
15+
### Miscellaneous Chores
16+
17+
* 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))
18+
* 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))
19+
* Update CODEOWNERS ([#9](https://github.com/launchdarkly/openfeature-php-server/issues/9)) ([ad3a465](https://github.com/launchdarkly/openfeature-php-server/commit/ad3a465be23cb68c0541ea7b8156bdc570013540))
20+
621
## [0.1.0] - 2023-04-21
722
Initial beta release of the LaunchDarkly OpenFeature provider for the Server-Side SDK for PHP.

src/Provider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class Provider implements OpenFeatureProvider
2727
private EvaluationContextConverter $contextConverter;
2828
private ResolutionDetailsConverter $detailsConverter;
2929

30-
const VERSION = '0.1.0'; // x-release-please-version
30+
const VERSION = '1.0.0'; // x-release-please-version
3131

3232
/**
3333
* Instantiate a new instance of this provider, backed by the provided LDClient instance.

0 commit comments

Comments
 (0)