Skip to content

Commit

Permalink
Updated Changelog and Readmes. Release 1.2.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
dariuszseweryn committed Apr 27, 2017
1 parent 2b92984 commit 50db478
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 5 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,17 @@ Change Log
==========

Version 1.3.0-SNAPSHOT

Version 1.2.1
* Added `ByteArrayBatchObservable` helper for splitting long byte arrays
* Fixed behaviour in non-Bluetooth environments. (https://github.com/Polidea/RxAndroidBle/issues/158)
* Fixed `RxBleConnectionMock` overwriting `BluetoothCharacteristic` value on setting notification. (https://github.com/Polidea/RxAndroidBle/issues/160)
* Fixed default payload size of Long Write operation when non-standard MTU was negotiated (https://github.com/Polidea/RxAndroidBle/issues/161)
* Added possibility to get the current MTU value of `RxBleConnection` (https://github.com/Polidea/RxAndroidBle/issues/166)
* Fixed retrying of `RxBleClient.scanBleDevices(UUID...)`, thanks BharathMG! (https://github.com/Polidea/RxAndroidBle/pull/174)
* Fixed connection not being noticed as established due to a race condition (https://github.com/Polidea/RxAndroidBle/issues/178)
* Fixed `BleBluetoothGattCallbackTimeout` macAddress being null on connection (https://github.com/Polidea/RxAndroidBle/issues/178)
* Fixed disconnect operation behaviour in an edge case situation (https://github.com/Polidea/RxAndroidBle/issues/178)

Version 1.2.0
* Added Proguard rules for the library. (https://github.com/Polidea/RxAndroidBle/issues/104)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -208,15 +208,15 @@ Complete usage examples are located in `/sample` [GitHub repo](https://github.co
### Gradle

```groovy
compile "com.polidea.rxandroidble:rxandroidble:1.2.0"
compile "com.polidea.rxandroidble:rxandroidble:1.2.1"
```
### Maven

```xml
<dependency>
<groupId>com.polidea.rxandroidble</groupId>
<artifactId>rxandroidble</artifactId>
<version>1.2.0</version>
<version>1.2.1</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.3.0-SNAPSHOT
VERSION_NAME=1.2.1

POM_DESCRIPTION=RxJava backed support for Bluetooth Low Energy in Android

Expand Down
2 changes: 1 addition & 1 deletion mockrxandroidble/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Get MockRxAndroidBle via Maven:
<dependency>
<groupId>com.polidea.rxandroidble</groupId>
<artifactId>mockclient</artifactId>
<version>1.2.0</version>
<version>1.2.1</version>
<type>aar</type>
</dependency>
```
Expand Down
1 change: 0 additions & 1 deletion sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ configurations.all {
}

dependencies {
// compile group: 'com.polidea.rxandroidble', name: 'rxandroidble', version: '1.1.0', changing: false
compile project(path: ':rxandroidble')
compile "com.android.support:appcompat-v7:$rootProject.ext.supportVersion"
compile "com.android.support:design:$rootProject.ext.supportVersion"
Expand Down

0 comments on commit 50db478

Please sign in to comment.