Skip to content

Commit d26e006

Browse files
committed
Merge branch 'master' into next-release
2 parents 75ac7cf + e52f4ef commit d26e006

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@
33

44
All notable changes to the LaunchDarkly Android SDK will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org).
55

6+
## [2.8.5] - 2019-07-29
7+
### Added:
8+
- Added a CircleCI badge to the project readme.
9+
### Fixed
10+
- Fix a bug introduced in 2.8.0 that could cause the SDK to enter a bad state where it would no longer connect to the flag stream if `identify()` was called rapidly.
11+
- Reverted an unintentional behavior change introduced in 2.8.0 when `LDClient.init` is given zero as the timeout argument. Before 2.8.0, this would not wait for initialization and return the client immediately. For 2.8.0-2.8.4 this was changed to wait indefinitely for initialization, 2.8.5 restores the earlier behavior.
12+
613
## [2.8.4] - 2019-06-14
714
### Fixed
815
- Deadlock when waiting on main thread for `identify` call.

example/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ dependencies {
4646
implementation 'com.android.support:appcompat-v7:26.1.0'
4747
implementation project(path: ':launchdarkly-android-client-sdk')
4848
// Comment the previous line and uncomment this one to depend on the published artifact:
49-
//implementation 'com.launchdarkly:launchdarkly-android-client-sdk:2.8.4'
49+
//implementation 'com.launchdarkly:launchdarkly-android-client-sdk:2.8.5'
5050

5151
implementation 'com.jakewharton.timber:timber:4.7.1'
5252

launchdarkly-android-client-sdk/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ apply plugin: 'io.codearte.nexus-staging'
77

88
allprojects {
99
group = 'com.launchdarkly'
10-
version = '2.8.4'
10+
version = '2.8.5'
1111
sourceCompatibility = 1.7
1212
targetCompatibility = 1.7
1313
}

0 commit comments

Comments
 (0)