Skip to content

Commit 60d5916

Browse files
Updated Changelog and Readmes. Release 1.19.0.
1 parent ea0989e commit 60d5916

File tree

5 files changed

+12
-9
lines changed

5 files changed

+12
-9
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
Change Log
22
==========
3+
Version 1.19.0
4+
* Added `ScanResult#getAdvertisingSid`, thanks @KrzysztofMamak (https://github.com/dariuszseweryn/RxAndroidBle/pull/856)
5+
36
Version 1.18.1
47
* Fixed `CharacteristicLongWriteOperation` defaults for API 33 (Android 13) (https://github.com/dariuszseweryn/RxAndroidBle/pull/847)
58

README.md

+4-4
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.18.1"
31+
implementation "com.polidea.rxandroidble3:rxandroidble:1.19.0"
3232
```
3333
or for RxJava 2 based artifact
3434
```groovy
35-
implementation "com.polidea.rxandroidble2:rxandroidble:1.18.1"
35+
implementation "com.polidea.rxandroidble2:rxandroidble:1.19.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.18.1</version>
43+
<version>1.19.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.18.1</version>
52+
<version>1.19.0</version>
5353
<type>aar</type>
5454
</dependency>
5555
```

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
GROUP=com.polidea.rxandroidble2
2-
VERSION_NAME=1.18.1
2+
VERSION_NAME=1.19.0
33

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

mockrxandroidble/README.md

+2-2
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.18.1</version>
66+
<version>1.19.0</version>
6767
<type>aar</type>
6868
</dependency>
6969
```
7070

7171
or via Gradle
7272

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

7777
### License

mockrxandroidble3/README.md

+2-2
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.18.1</version>
68+
<version>1.19.0</version>
6969
<type>aar</type>
7070
</dependency>
7171
```
7272

7373
or via Gradle
7474

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

7979
### License

0 commit comments

Comments
 (0)