Skip to content

Commit

Permalink
Updated Changelog and Readmes. Release 1.7.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
dariuszseweryn committed Aug 3, 2018
1 parent e13a06f commit 3c3cf14
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
Change Log
==========
Version 1.7.0-SNAPSHOT
Version 1.7.0
* Introduced a new API that allows for background scanning in modern Android OS versions (https://github.com/Polidea/RxAndroidBle/issues/369)

* Fixed LocationServicesOkObservable (https://github.com/Polidea/RxAndroidBle/pull/438)
* Added GATT status code to `BleDisconnectionException` (https://github.com/Polidea/RxAndroidBle/pull/405)
* Fixed possible concurrent access to `DisconnectionRouter` (https://github.com/Polidea/RxAndroidBle/pull/442)
* Fixed race condition in `CharacteristicLongWriteOperation` (https://github.com/Polidea/RxAndroidBle/pull/465)

Version 1.6.0
* Deprecated ConnectionSharingAdapter (https://github.com/Polidea/RxAndroidBle/pull/397)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -344,15 +344,15 @@ Complete usage examples are located in `/sample` [GitHub repo](https://github.co
### Gradle
```groovy
compile "com.polidea.rxandroidble2:rxandroidble:1.6.0"
compile "com.polidea.rxandroidble2:rxandroidble:1.7.0"
```
### Maven
```xml
<dependency>
<groupId>com.polidea.rxandroidble2</groupId>
<artifactId>rxandroidble</artifactId>
<version>1.6.0</version>
<version>1.7.0</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.rxandroidble2
VERSION_NAME=1.7.0-SNAPSHOT
VERSION_NAME=1.7.0

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.rxandroidble2</groupId>
<artifactId>mockclient</artifactId>
<version>1.6.0</version>
<version>1.7.0</version>
<type>aar</type>
</dependency>
```

or via Gradle

```groovy
compile "com.polidea.rxandroidble2:mockclient:1.6.0"
compile "com.polidea.rxandroidble2:mockclient:1.7.0"
```

### License
Expand Down

0 comments on commit 3c3cf14

Please sign in to comment.