Skip to content

Commit

Permalink
Updated Changelog and Readmes. Release 1.4.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
uKL committed Nov 17, 2017
1 parent b6c609f commit 7858ce8
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
Change Log
==========
Version 1.4.3
* 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)
* 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)
* Updated RxJava dependency (https://github.com/Polidea/RxAndroidBle/issues/312)
* Updated to Gradle 3.0.0/Android Studio 3.0 (https://github.com/Polidea/RxAndroidBle/issues/302)
* Nicer exception messages (https://github.com/Polidea/RxAndroidBle/issues/303)

Version 1.4.2
* Fixed MTU value not being updated when changed by the peripheral (https://github.com/Polidea/RxAndroidBle/issues/293)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -322,15 +322,15 @@ Complete usage examples are located in `/sample` [GitHub repo](https://github.co
### Gradle
```groovy
compile "com.polidea.rxandroidble:rxandroidble:1.4.2"
compile "com.polidea.rxandroidble:rxandroidble:1.4.3"
```
### Maven
```xml
<dependency>
<groupId>com.polidea.rxandroidble</groupId>
<artifactId>rxandroidble</artifactId>
<version>1.4.2</version>
<version>1.4.3</version>
<type>aar</type>
</dependency>
```
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
GROUP=com.polidea.rxandroidble
VERSION_NAME=1.4.3-SNAPSHOT
VERSION_NAME=1.4.3

POM_DESCRIPTION=RxJava backed support for Bluetooth Low Energy in Android

Expand Down
4 changes: 2 additions & 2 deletions mockrxandroidble/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,15 +40,15 @@ Get MockRxAndroidBle via Maven:
<dependency>
<groupId>com.polidea.rxandroidble</groupId>
<artifactId>mockclient</artifactId>
<version>1.4.2</version>
<version>1.4.3</version>
<type>aar</type>
</dependency>
```

or via Gradle

```groovy
compile "com.polidea.rxandroidble:mockclient:1.4.2"
compile "com.polidea.rxandroidble:mockclient:1.4.3"
```

### License
Expand Down

0 comments on commit 7858ce8

Please sign in to comment.