diff --git a/CHANGELOG.md b/CHANGELOG.md index 871c5af..4b1fdb9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to the LaunchDarkly EventSource implementation for Java will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org). +## [1.11.3] - 2022-08-22 +### Changed: +- Changed jitter logic that used `java.util.Random` to use `java.security.SecureRandom`. Even though in this case it is not being used for any cryptographic purpose, but only to produce a pseudo-random delay, static analysis tools may still report every use of `java.util.Random` as a security risk by default. The purpose of this change is simply to avoid such warnings; it has no practical effect on the behavior of the library. + ## [1.11.2] - 2020-09-28 ### Fixed: - Restored compatibility with Java 7. CI builds now verify that the library can be compiled and tested in Java 7 rather than just building with a target JVM setting of 1.7. diff --git a/gradle.properties b/gradle.properties index b7e0e06..5dbddb3 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ -version=1.11.2 +version=1.11.3 ossrhUsername= ossrhPassword=