Skip to content

Commit

Permalink
Updated Changelog and Readmes. Release 1.15.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
dariuszseweryn committed Jul 9, 2022
1 parent fb8991b commit ca92ec2
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 9 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,10 @@
Change Log
==========
Version 1.15.2
* Fixed `RxBleDevice#toString` crashing when runtime permission BLUETOOTH_CONNECT is not granted on API 31 (Android 12) (https://github.com/Polidea/RxAndroidBle/pull/800)
* Added granted permissions cache (https://github.com/Polidea/RxAndroidBle/pull/802)
* Updated `RxBleClient#getBondedDevices` Javadoc for usage on API 31 (Android 12) (https://github.com/Polidea/RxAndroidBle/pull/804)

Version 1.15.1
* Fixed duplicate 'META-INF/com.google.dagger_dagger.version' file (regression) (https://github.com/Polidea/RxAndroidBle/pull/794)

Expand Down
8 changes: 4 additions & 4 deletions README.md
Expand Up @@ -28,19 +28,19 @@ The first step is to include RxAndroidBle into your project.
### Gradle
If you use Gradle to build your project — as a Gradle project implementation dependency:
```groovy
implementation "com.polidea.rxandroidble3:rxandroidble:1.15.1"
implementation "com.polidea.rxandroidble3:rxandroidble:1.15.2"
```
or for RxJava 2 based artifact
```groovy
implementation "com.polidea.rxandroidble2:rxandroidble:1.15.1"
implementation "com.polidea.rxandroidble2:rxandroidble:1.15.2"
```
### Maven
If you use Maven to build your project — as a Maven project dependency:
```xml
<dependency>
<groupId>com.polidea.rxandroidble3</groupId>
<artifactId>rxandroidble</artifactId>
<version>1.15.1</version>
<version>1.15.2</version>
<type>aar</type>
</dependency>
```
Expand All @@ -49,7 +49,7 @@ or for RxJava 2 based artifact
<dependency>
<groupId>com.polidea.rxandroidble2</groupId>
<artifactId>rxandroidble</artifactId>
<version>1.15.1</version>
<version>1.15.2</version>
<type>aar</type>
</dependency>
```
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
@@ -1,5 +1,5 @@
GROUP=com.polidea.rxandroidble2
VERSION_NAME=1.15.1
VERSION_NAME=1.15.2

POM_DESCRIPTION=RxJava backed support for Bluetooth Low Energy in Android

Expand Down
4 changes: 2 additions & 2 deletions mockrxandroidble/README.md
Expand Up @@ -63,15 +63,15 @@ Get MockRxAndroidBle via Maven:
<dependency>
<groupId>com.polidea.rxandroidble2</groupId>
<artifactId>mockclient</artifactId>
<version>1.15.1</version>
<version>1.15.2</version>
<type>aar</type>
</dependency>
```

or via Gradle

```groovy
implementation "com.polidea.rxandroidble2:mockclient:1.15.1"
implementation "com.polidea.rxandroidble2:mockclient:1.15.2"
```

### License
Expand Down
4 changes: 2 additions & 2 deletions mockrxandroidble3/README.md
Expand Up @@ -65,15 +65,15 @@ Get MockRxAndroidBle via Maven:
<dependency>
<groupId>com.polidea.rxandroidble3</groupId>
<artifactId>mockclient</artifactId>
<version>1.15.1</version>
<version>1.15.2</version>
<type>aar</type>
</dependency>
```

or via Gradle

```groovy
implementation "com.polidea.rxandroidble3:mockclient:1.15.1"
implementation "com.polidea.rxandroidble3:mockclient:1.15.2"
```

### License
Expand Down

0 comments on commit ca92ec2

Please sign in to comment.