From d5b39cd2b4d282380ee785aea9faba47b4840a82 Mon Sep 17 00:00:00 2001 From: LaunchDarklyReleaseBot Date: Fri, 9 Feb 2024 21:57:04 +0000 Subject: [PATCH] Releasing version 7.2.6 --- CHANGELOG.md | 4 ++++ gradle.properties | 2 +- src/main/java/com/launchdarkly/sdk/server/Version.java | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7c5d5b92c..af202feac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to the LaunchDarkly Java SDK will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org). +## [7.2.6] - 2024-02-09 +### Added: +- LDReactorClient to adapt LDClient to reactive streams. + ## [7.1.1] - 2023-11-14 ### Fixed: - Fixes NPE when interacting with Context created by copying. (Thanks, [ diff --git a/gradle.properties b/gradle.properties index e05ddf963..49b6be3e0 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ -version=7.1.1 +version=7.2.6 # The following empty ossrh properties are used by LaunchDarkly's internal integration testing framework # and should not be needed for typical development purposes (including by third-party developers). ossrhUsername= diff --git a/src/main/java/com/launchdarkly/sdk/server/Version.java b/src/main/java/com/launchdarkly/sdk/server/Version.java index 008e3284e..c7677929d 100644 --- a/src/main/java/com/launchdarkly/sdk/server/Version.java +++ b/src/main/java/com/launchdarkly/sdk/server/Version.java @@ -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 = "7.1.1"; + static final String SDK_VERSION = "7.2.6"; }