Skip to content

Commit

Permalink
Updated Changelog and Readmes. Release 1.12.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
dariuszseweryn committed Apr 13, 2021
1 parent ae20a4c commit 7d46de5
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 5 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
Change Log
==========
Version 1.12.0
* Fixed a leak in `ScanOperationApi21` (https://github.com/Polidea/RxAndroidBle/pull/708)
* Added Service Solicitation UUIDs support, thanks nrbrook! (https://github.com/Polidea/RxAndroidBle/pull/711)
* [mockclient] Added builder for `RxBleScanRecordMock`, thanks nrbrook! (https://github.com/Polidea/RxAndroidBle/pull/703)
* [mockclient] Changed `RxBleClientMock.DeviceBuilder()` => `RxBleDeviceMock.Builder`. Structural changes to creating devices, thanks nrbrook! (https://github.com/Polidea/RxAndroidBle/pull/706)
* [mockclient] Added builder functions to provide callbacks for characteristic/descriptor writes/reads, thanks nrbrook! (https://github.com/Polidea/RxAndroidBle/pull/707)
* [mockclient] Added constructor for `RxScanRecordMock`, thanks nrbrook! (https://github.com/Polidea/RxAndroidBle/pull/712)
* [mockclient] Fixed behaviour of `RxBleClientMock.observeStateChanges()` (https://github.com/Polidea/RxAndroidBle/pull/744)

Version 1.11.1
* Fixed `NullPointerException` when logging failed `BluetoothGattCharacteristic` initial reads (https://github.com/Polidea/RxAndroidBle/pull/679)
* [mockclient] Added support for `BluetoothDevice` in `RxBleDeviceMock` (https://github.com/Polidea/RxAndroidBle/pull/676)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -336,15 +336,15 @@ Keep in mind that these are only _samples_ to show how the library can be used.
### Gradle
```groovy
implementation "com.polidea.rxandroidble2:rxandroidble:1.11.1"
implementation "com.polidea.rxandroidble2:rxandroidble:1.12.0"
```
### Maven
```xml
<dependency>
<groupId>com.polidea.rxandroidble2</groupId>
<artifactId>rxandroidble</artifactId>
<version>1.11.1</version>
<version>1.12.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.12.0-SNAPSHOT
VERSION_NAME=1.12.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 @@ -63,15 +63,15 @@ Get MockRxAndroidBle via Maven:
<dependency>
<groupId>com.polidea.rxandroidble2</groupId>
<artifactId>mockclient</artifactId>
<version>1.11.1</version>
<version>1.12.0</version>
<type>aar</type>
</dependency>
```

or via Gradle

```groovy
implementation "com.polidea.rxandroidble2:mockclient:1.11.1"
implementation "com.polidea.rxandroidble2:mockclient:1.12.0"
```

### License
Expand Down

0 comments on commit 7d46de5

Please sign in to comment.