From 977a6b30e7a5192c59d8bd081942041cf5b41ae4 Mon Sep 17 00:00:00 2001 From: LaunchDarklyReleaseBot Date: Thu, 14 Mar 2024 15:39:12 +0000 Subject: [PATCH] Releasing version 7.3.0 --- CHANGELOG.md | 5 +++++ gradle.properties | 2 +- src/main/java/com/launchdarkly/sdk/server/Version.java | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index af202feac..4feb23b5b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ All notable changes to the LaunchDarkly Java SDK will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org). +## [7.3.0] - 2024-03-14 +### Changed: +- Redact anonymous attributes within feature events +- Always inline contexts for feature events + ## [7.2.6] - 2024-02-09 ### Added: - LDReactorClient to adapt LDClient to reactive streams. diff --git a/gradle.properties b/gradle.properties index 49b6be3e0..df6e118f4 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ -version=7.2.6 +version=7.3.0 # 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 c7677929d..dc7662ad7 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.2.6"; + static final String SDK_VERSION = "7.3.0"; }