Skip to content

Commit be3ee50

Browse files
Updated Changelog and Readmes. Release 1.17.0.
1 parent 9f2b782 commit be3ee50

File tree

5 files changed

+12
-9
lines changed

5 files changed

+12
-9
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
Change Log
22
==========
3+
Version 1.17.0
4+
* Changed RxBleConnection.GATT_MTU_MAXIMUM to 515 to fix Android 13, thanks @marsounjan! (https://github.com/Polidea/RxAndroidBle/pull/808)
5+
36
Version 1.16.0
47
* Added `ScanSettingsBuilder#setLegacy` option, thanks @danielstuart14! (https://github.com/Polidea/RxAndroidBle/pull/801)
58

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,19 +28,19 @@ The first step is to include RxAndroidBle into your project.
2828
### Gradle
2929
If you use Gradle to build your project — as a Gradle project implementation dependency:
3030
```groovy
31-
implementation "com.polidea.rxandroidble3:rxandroidble:1.16.0"
31+
implementation "com.polidea.rxandroidble3:rxandroidble:1.17.0"
3232
```
3333
or for RxJava 2 based artifact
3434
```groovy
35-
implementation "com.polidea.rxandroidble2:rxandroidble:1.16.0"
35+
implementation "com.polidea.rxandroidble2:rxandroidble:1.17.0"
3636
```
3737
### Maven
3838
If you use Maven to build your project — as a Maven project dependency:
3939
```xml
4040
<dependency>
4141
<groupId>com.polidea.rxandroidble3</groupId>
4242
<artifactId>rxandroidble</artifactId>
43-
<version>1.16.0</version>
43+
<version>1.17.0</version>
4444
<type>aar</type>
4545
</dependency>
4646
```
@@ -49,7 +49,7 @@ or for RxJava 2 based artifact
4949
<dependency>
5050
<groupId>com.polidea.rxandroidble2</groupId>
5151
<artifactId>rxandroidble</artifactId>
52-
<version>1.16.0</version>
52+
<version>1.17.0</version>
5353
<type>aar</type>
5454
</dependency>
5555
```

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
GROUP=com.polidea.rxandroidble2
2-
VERSION_NAME=1.16.0
2+
VERSION_NAME=1.17.0
33

44
POM_DESCRIPTION=RxJava backed support for Bluetooth Low Energy in Android
55

mockrxandroidble/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,15 +63,15 @@ Get MockRxAndroidBle via Maven:
6363
<dependency>
6464
<groupId>com.polidea.rxandroidble2</groupId>
6565
<artifactId>mockclient</artifactId>
66-
<version>1.16.0</version>
66+
<version>1.17.0</version>
6767
<type>aar</type>
6868
</dependency>
6969
```
7070

7171
or via Gradle
7272

7373
```groovy
74-
implementation "com.polidea.rxandroidble2:mockclient:1.16.0"
74+
implementation "com.polidea.rxandroidble2:mockclient:1.17.0"
7575
```
7676

7777
### License

mockrxandroidble3/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,15 +65,15 @@ Get MockRxAndroidBle via Maven:
6565
<dependency>
6666
<groupId>com.polidea.rxandroidble3</groupId>
6767
<artifactId>mockclient</artifactId>
68-
<version>1.16.0</version>
68+
<version>1.17.0</version>
6969
<type>aar</type>
7070
</dependency>
7171
```
7272

7373
or via Gradle
7474

7575
```groovy
76-
implementation "com.polidea.rxandroidble3:mockclient:1.16.0"
76+
implementation "com.polidea.rxandroidble3:mockclient:1.17.0"
7777
```
7878

7979
### License

0 commit comments

Comments
 (0)