Skip to content

Commit 0440673

Browse files
authored
feat!: 1.0.0 release. (#35)
1 parent 23be01f commit 0440673

File tree

3 files changed

+1
-8
lines changed

3 files changed

+1
-8
lines changed

README.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,6 @@ This provider allows for using LaunchDarkly with the OpenFeature SDK for .NET.
66

77
This provider is designed primarily for use in multi-user systems such as web servers and applications. It follows the server-side LaunchDarkly model for multi-user contexts. It is not intended for use in desktop and embedded systems applications.
88

9-
> [!WARNING]
10-
> This is a beta version. The API is not stabilized and may introduce breaking changes.
11-
12-
> [!NOTE]
13-
> This OpenFeature provider uses production versions of the LaunchDarkly SDK, which adhere to our standard [versioning policy](https://docs.launchdarkly.com/home/relay-proxy/versioning).
14-
159
# LaunchDarkly overview
1610

1711
[LaunchDarkly](https://www.launchdarkly.com) is a feature management platform that serves trillions of feature flags daily to help teams build better software, faster. [Get started](https://docs.launchdarkly.com/home/getting-started) using LaunchDarkly today!

release-please-config.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
"packages": {
44
".": {
55
"release-type": "simple",
6-
"bump-minor-pre-major": true,
76
"versioning": "default",
87
"include-v-in-tag": false,
98
"include-component-in-tag": false,

src/LaunchDarkly.OpenFeature.ServerProvider/Provider.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ public override Task Initialize(EvaluationContext context)
144144

145145
_client.DataSourceStatusProvider.StatusChanged += StatusChangeHandler;
146146

147-
// We start listening for status changes and then we check the current status change. If we do not check
147+
// We start listening for status changes, and then we check the current status change. If we do not check
148148
// then we could have missed a status change. If we check before registering a listener, then we could
149149
// miss a change between checking and listening. Doing it this way we can get duplicates, but we filter
150150
// when the status does not actually change, so we won't emit duplicate events.

0 commit comments

Comments
 (0)