Skip to content

Commit 31595d3

Browse files
committed
Bump version number
1 parent 1769558 commit 31595d3

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

example/ios/Podfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2408,7 +2408,7 @@ PODS:
24082408
- React-perflogger (= 0.82.1)
24092409
- React-utils (= 0.82.1)
24102410
- SocketRocket
2411-
- RNPermissions (5.4.2):
2411+
- RNPermissions (5.4.3):
24122412
- boost
24132413
- DoubleConversion
24142414
- fast_float
@@ -2780,7 +2780,7 @@ SPEC CHECKSUMS:
27802780
ReactAppDependencyProvider: a45ef34bb22dc1c9b2ac1f74167d9a28af961176
27812781
ReactCodegen: 878add6c7d8ff8cea87697c44d29c03b79b6f2d9
27822782
ReactCommon: 804dc80944fa90b86800b43c871742ec005ca424
2783-
RNPermissions: 789cc61ad4a30180ad2c98addf033feb4d8f1d0d
2783+
RNPermissions: f6b3e41e29e5c4994cc90257c3093ae6fdcb1f98
27842784
RNVectorIcons: 791f13226ec4a3fd13062eda9e892159f0981fae
27852785
SocketRocket: d4aabe649be1e368d1318fdf28a022d714d65748
27862786
Yoga: 689c8e04277f3ad631e60fe2a08e41d411daf8eb

ios/LocationAlways/RNPermissionHandlerLocationAlways.mm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ - (void)locationManager:(CLLocationManager *)manager didChangeAuthorizationStatu
132132
}
133133

134134
- (void)resolveStatus {
135-
if (_resolve != nil && _locationManager != nil) {
135+
if (_locationManager != nil && _resolve != nil) {
136136
CLAuthorizationStatus status = [self statusWithManager:_locationManager];
137137

138138
[_locationManager setDelegate:nil];

ios/LocationWhenInUse/RNPermissionHandlerLocationWhenInUse.mm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ - (void)locationManager:(CLLocationManager *)manager didChangeAuthorizationStatu
7676
}
7777

7878
- (void)resolveStatus {
79-
if (_resolve != nil && _locationManager != nil) {
79+
if (_locationManager != nil && _resolve != nil) {
8080
CLAuthorizationStatus status = [self statusWithManager:_locationManager];
8181

8282
[_locationManager setDelegate:nil];

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-permissions",
3-
"version": "5.4.2",
3+
"version": "5.4.3",
44
"license": "MIT",
55
"description": "An unified permissions API for React Native on iOS, Android and Windows",
66
"author": "Mathieu Acthernoene <[email protected]>",

0 commit comments

Comments
 (0)