File tree Expand file tree Collapse file tree 4 files changed +10
-7
lines changed Expand file tree Collapse file tree 4 files changed +10
-7
lines changed Original file line number Diff line number Diff line change 1
1
Change Log
2
2
==========
3
- Version 1.7.0-SNAPSHOT
3
+ Version 1.7.0
4
4
* Introduced a new API that allows for background scanning in modern Android OS versions (https://github.com/Polidea/RxAndroidBle/issues/369 )
5
-
5
+ * Fixed LocationServicesOkObservable (https://github.com/Polidea/RxAndroidBle/pull/438 )
6
+ * Added GATT status code to ` BleDisconnectionException ` (https://github.com/Polidea/RxAndroidBle/pull/405 )
7
+ * Fixed possible concurrent access to ` DisconnectionRouter ` (https://github.com/Polidea/RxAndroidBle/pull/442 )
8
+ * Fixed race condition in ` CharacteristicLongWriteOperation ` (https://github.com/Polidea/RxAndroidBle/pull/465 )
6
9
7
10
Version 1.6.0
8
11
* Deprecated ConnectionSharingAdapter (https://github.com/Polidea/RxAndroidBle/pull/397 )
Original file line number Diff line number Diff line change @@ -344,15 +344,15 @@ Complete usage examples are located in `/sample` [GitHub repo](https://github.co
344
344
### Gradle
345
345
346
346
```groovy
347
- compile "com.polidea.rxandroidble2:rxandroidble:1.6 .0"
347
+ compile "com.polidea.rxandroidble2:rxandroidble:1.7 .0"
348
348
```
349
349
### Maven
350
350
351
351
```xml
352
352
<dependency>
353
353
<groupId>com.polidea.rxandroidble2</groupId>
354
354
<artifactId>rxandroidble</artifactId>
355
- <version>1.6 .0</version>
355
+ <version>1.7 .0</version>
356
356
<type>aar</type>
357
357
</dependency>
358
358
```
Original file line number Diff line number Diff line change 1
1
GROUP =com.polidea.rxandroidble2
2
- VERSION_NAME =1.7.0-SNAPSHOT
2
+ VERSION_NAME =1.7.0
3
3
4
4
POM_DESCRIPTION =RxJava backed support for Bluetooth Low Energy in Android
5
5
Original file line number Diff line number Diff line change @@ -40,15 +40,15 @@ Get MockRxAndroidBle via Maven:
40
40
< dependency>
41
41
< groupId> com. polidea. rxandroidble2< / groupId>
42
42
< artifactId> mockclient< / artifactId>
43
- < version> 1.6 . 0 < / version>
43
+ < version> 1.7 . 0 < / version>
44
44
< type> aar< / type>
45
45
< / dependency>
46
46
```
47
47
48
48
or via Gradle
49
49
50
50
```groovy
51
- compile " com.polidea.rxandroidble2:mockclient:1.6 .0"
51
+ compile " com.polidea.rxandroidble2:mockclient:1.7 .0"
52
52
```
53
53
54
54
### License
You can’t perform that action at this time.
0 commit comments