diff --git a/CHANGELOG.md b/CHANGELOG.md index 1ac035589..acaca920c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,11 @@ All notable changes to the LaunchDarkly Java SDK will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org). +## [2.2.2] - 2017-04-28 +### Fixed +- In Java 7, connections to LaunchDarkly are now possible using TLSv1.1 and/or TLSv1.2 +- The order of SSE stream events is now preserved. ((launchdarkly/okhttp-eventsource#19)[https://github.com/launchdarkly/okhttp-eventsource/issues/19] + ## [2.2.1] - 2017-04-25 ### Fixed - [#92](https://github.com/launchdarkly/java-client/issues/92) Regex `matches` targeting rules now include the user if diff --git a/build.gradle b/build.gradle index 5edfa3ace..c229cd930 100644 --- a/build.gradle +++ b/build.gradle @@ -19,7 +19,7 @@ repositories { allprojects { group = 'com.launchdarkly' - version = "2.2.1" + version = "2.2.2" sourceCompatibility = 1.7 targetCompatibility = 1.7 } @@ -30,7 +30,7 @@ dependencies { compile "com.google.guava:guava:19.0" compile "joda-time:joda-time:2.9.3" compile "org.slf4j:slf4j-api:1.7.21" - compile group: "com.launchdarkly", name: "okhttp-eventsource", version: "1.3.0", changing: true + compile group: "com.launchdarkly", name: "okhttp-eventsource", version: "1.3.1", changing: true compile "redis.clients:jedis:2.9.0" testCompile "org.easymock:easymock:3.4" testCompile 'junit:junit:4.12'