Skip to content

Commit 86eb1e2

Browse files
author
LaunchDarklyReleaseBot
committed
Releasing version 0.2.0
1 parent bc5b610 commit 86eb1e2

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22

33
All notable changes to the LaunchDarkly OpenFeature provider for the Server-Side SDK for Java will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org).
44

5+
## [0.2.0] - 2023-11-02
6+
This version contains breaking changes. You will need to update your LaunchDarkly SDK version as well as the OpenFeature SDK version.
7+
8+
Additionally this version changes how the provider is constructed. For an example please refer to the README.md.
9+
10+
The LDClient is now constructed by the provider, and if you need to access it, then you can use the `getLdClient` method.
11+
12+
### Changed:
13+
- Updated to support the latest LaunchDarkly SDK as well as supporting initialization, shutdown, and eventing specification changes.
14+
515
## [0.1.0] - 2023-02-24
616
Initial beta release of the LaunchDarkly OpenFeature provider for the Server-Side SDK for Java.
717

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
group = com.launchdarkly
2-
version=0.1.0
2+
version=0.2.0
33
signing.keyId=
44
signing.password=
55
signing.secretKeyRingFile=

src/main/java/com/launchdarkly/openfeature/serverprovider/Version.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ abstract class Version {
44
private Version() {}
55

66
// This constant is updated automatically by our Gradle script during a release, if the project version has changed
7-
static final String SDK_VERSION = "0.1.0";
7+
static final String SDK_VERSION = "0.2.0";
88
}

0 commit comments

Comments
 (0)