diff --git a/CHANGELOG.md b/CHANGELOG.md index f946a5b94..90d2142e4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ Change Log ========== +Version 1.8.0 +* Added `NotificationSetupMode.QUICK_SETUP` for devices which start notifying right after CCC descriptor write (https://github.com/Polidea/RxAndroidBle/pull/478) +* Migrated to androidx usage (https://github.com/Polidea/RxAndroidBle/pull/497) + Version 1.7.2 * Fixed stalled library (race condition) when trying to connect while BluetoothAdapter is OFF (https://github.com/Polidea/RxAndroidBle/pull/522) * Fixed logs in DisconnectionRouter (https://github.com/Polidea/RxAndroidBle/pull/523) diff --git a/README.md b/README.md index 210e3e6a7..4f0f32ca8 100644 --- a/README.md +++ b/README.md @@ -334,7 +334,7 @@ Complete usage examples are located in `/sample` [GitHub repo](https://github.co ### Gradle ```groovy -implementation "com.polidea.rxandroidble2:rxandroidble:1.7.2" +implementation "com.polidea.rxandroidble2:rxandroidble:1.8.0" ``` ### Maven @@ -342,7 +342,7 @@ implementation "com.polidea.rxandroidble2:rxandroidble:1.7.2" com.polidea.rxandroidble2 rxandroidble - 1.7.2 + 1.8.0 aar ``` diff --git a/gradle.properties b/gradle.properties index b83f58d3a..ec28e8737 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.polidea.rxandroidble2 -VERSION_NAME=1.8.0-SNAPSHOT +VERSION_NAME=1.8.0 POM_DESCRIPTION=RxJava backed support for Bluetooth Low Energy in Android diff --git a/mockrxandroidble/README.md b/mockrxandroidble/README.md index 23a71b08b..5fc0fe742 100644 --- a/mockrxandroidble/README.md +++ b/mockrxandroidble/README.md @@ -40,7 +40,7 @@ Get MockRxAndroidBle via Maven: com.polidea.rxandroidble2 mockclient - 1.7.2 + 1.8.0 aar ``` @@ -48,7 +48,7 @@ Get MockRxAndroidBle via Maven: or via Gradle ```groovy -implementation "com.polidea.rxandroidble2:mockclient:1.7.2" +implementation "com.polidea.rxandroidble2:mockclient:1.8.0" ``` ### License