Skip to content

Commit 0e9b523

Browse files
committed
Prepare version 0.11.0
1 parent b655e76 commit 0e9b523

3 files changed

Lines changed: 9 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
# Change Log
22

3-
Version 0.11.0 *(In development)*
4-
---------------------------------
3+
Version 0.11.0 *(2025-01-19)*
4+
-----------------------------
5+
6+
- Behavior change: Do not crash if the corresponding permission request can not be found. Instead we no-op. [\#271](https://github.com/vanniktech/RxPermission/pull/271) ([vanniktech](https://github.com/vanniktech))
7+
- Bug fix: Use ConcurrentHashMap to keep track of currentPermissionRequests to avoid multithreading issues. [\#268](https://github.com/vanniktech/RxPermission/pull/268) ([vanniktech](https://github.com/vanniktech))
8+
- Include permission name in exception message. [\#266](https://github.com/vanniktech/RxPermission/pull/266) ([vanniktech](https://github.com/vanniktech))
59

610
Version 0.10.0 *(2022-08-19)*
711
-----------------------------

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ This library wraps the Android Runtime Permissions with RxJava 2. It's based on
1010
# Download
1111

1212
```groovy
13-
implementation 'com.vanniktech:rxpermission:0.10.0'
13+
implementation 'com.vanniktech:rxpermission:0.11.0'
1414
implementation 'com.vanniktech:rxpermission:0.11.0-SNAPSHOT'
1515
```
1616

@@ -83,7 +83,7 @@ RealRxPermission.getInstance(application)
8383
In addition the library offers you a `MockRxPermission` that can be used for testing.
8484

8585
```gradle
86-
implementation 'com.vanniktech:rxpermission-testing:0.10.0'
86+
implementation 'com.vanniktech:rxpermission-testing:0.11.0'
8787
```
8888

8989
The constructor takes a vararg of Permissions.

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
GROUP=com.vanniktech
2-
VERSION_NAME=0.11.0-SNAPSHOT
2+
VERSION_NAME=0.11.0
33

44
POM_DESCRIPTION=Reactive permissions for Android
55

0 commit comments

Comments
 (0)