Skip to content

Commit

Permalink
Release version 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
wesleyorbin committed Feb 27, 2023
1 parent 686119b commit 17f4e76
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 1.0.1

##### Fixed
- Fixes an issue introduced in 1.0.0 where setting `enableAutoLocationCollection` to any value in `app.json` would enable the option on iOS.

# 1.0.0

##### ⚠ Breaking
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ This Expo Config plugin auto configures the [`Braze React Native SDK`](https://w

| Braze Expo Plugin | Braze React Native SDK |
| ----------------- | ---------------------- |
| 1.0.0 | >= 2.0.2 |
| >= 1.0.0 | >= 2.0.2 |
| <= 0.6.0 | 1.38.0 - 1.41.0 |
2 changes: 1 addition & 1 deletion example/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1256,7 +1256,7 @@
integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==

"@braze/expo-plugin@file:../plugin":
version "1.0.0"
version "1.0.1"

"@braze/react-native-sdk@~2.0.2":
version "2.0.2"
Expand Down
2 changes: 1 addition & 1 deletion plugin/ios/ExpoAdapterBraze/BrazeAppDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public class BrazeAppDelegate: ExpoAppDelegateSubscriber {
if configuration.location.brazeLocationProvider == nil {
configuration.location.brazeLocationProvider = BrazeLocationProvider()
}
configuration.location.automaticLocationCollection = true
configuration.location.automaticLocationCollection = enableAutoLocationCollection
}

if let enableAutoGeofenceRequests = plistConfig["EnableAutomaticLocationCollection"] as? Bool {
Expand Down
2 changes: 1 addition & 1 deletion plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@braze/expo-plugin",
"version": "1.0.0",
"version": "1.0.1",
"description": "Config plugin for @braze/react-native-sdk package",
"main": "build/withBraze.js",
"types": "build/withBraze.d.ts",
Expand Down

0 comments on commit 17f4e76

Please sign in to comment.