Skip to content

Commit 7858ce8

Browse files
committed
Updated Changelog and Readmes. Release 1.4.3.
1 parent b6c609f commit 7858ce8

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
Change Log
22
==========
3+
Version 1.4.3
4+
* Log informing that the underlying semaphore in a QueueSemaphore has been interrupted will be printed only when the situation was unexpected.(https://github.com/Polidea/RxAndroidBle/issues/317)
5+
* Fixed possible race condition when calling `.doOnSubscribe()` and `.doOnUnsubscribe()` which lead to calling `ConnectionOperationQueueImpl.onConnectionUnsubscribed()` before the `.onConnectionSubscribed()` has returned. (https://github.com/Polidea/RxAndroidBle/issues/308)
6+
* Updated RxJava dependency (https://github.com/Polidea/RxAndroidBle/issues/312)
7+
* Updated to Gradle 3.0.0/Android Studio 3.0 (https://github.com/Polidea/RxAndroidBle/issues/302)
8+
* Nicer exception messages (https://github.com/Polidea/RxAndroidBle/issues/303)
39

410
Version 1.4.2
511
* Fixed MTU value not being updated when changed by the peripheral (https://github.com/Polidea/RxAndroidBle/issues/293)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -322,15 +322,15 @@ Complete usage examples are located in `/sample` [GitHub repo](https://github.co
322322
### Gradle
323323
324324
```groovy
325-
compile "com.polidea.rxandroidble:rxandroidble:1.4.2"
325+
compile "com.polidea.rxandroidble:rxandroidble:1.4.3"
326326
```
327327
### Maven
328328
329329
```xml
330330
<dependency>
331331
<groupId>com.polidea.rxandroidble</groupId>
332332
<artifactId>rxandroidble</artifactId>
333-
<version>1.4.2</version>
333+
<version>1.4.3</version>
334334
<type>aar</type>
335335
</dependency>
336336
```

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
GROUP=com.polidea.rxandroidble
2-
VERSION_NAME=1.4.3-SNAPSHOT
2+
VERSION_NAME=1.4.3
33

44
POM_DESCRIPTION=RxJava backed support for Bluetooth Low Energy in Android
55

mockrxandroidble/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,15 +40,15 @@ Get MockRxAndroidBle via Maven:
4040
<dependency>
4141
<groupId>com.polidea.rxandroidble</groupId>
4242
<artifactId>mockclient</artifactId>
43-
<version>1.4.2</version>
43+
<version>1.4.3</version>
4444
<type>aar</type>
4545
</dependency>
4646
```
4747

4848
or via Gradle
4949

5050
```groovy
51-
compile "com.polidea.rxandroidble:mockclient:1.4.2"
51+
compile "com.polidea.rxandroidble:mockclient:1.4.3"
5252
```
5353

5454
### License

0 commit comments

Comments
 (0)