Skip to content

Commit

Permalink
Releasing version 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
LaunchDarklyReleaseBot committed Nov 2, 2023
1 parent bc5b610 commit 86eb1e2
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@

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).

## [0.2.0] - 2023-11-02
This version contains breaking changes. You will need to update your LaunchDarkly SDK version as well as the OpenFeature SDK version.

Additionally this version changes how the provider is constructed. For an example please refer to the README.md.

The LDClient is now constructed by the provider, and if you need to access it, then you can use the `getLdClient` method.

### Changed:
- Updated to support the latest LaunchDarkly SDK as well as supporting initialization, shutdown, and eventing specification changes.

## [0.1.0] - 2023-02-24
Initial beta release of the LaunchDarkly OpenFeature provider for the Server-Side SDK for Java.

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group = com.launchdarkly
version=0.1.0
version=0.2.0
signing.keyId=
signing.password=
signing.secretKeyRingFile=
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ abstract class Version {
private Version() {}

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

0 comments on commit 86eb1e2

Please sign in to comment.