expo-constants 13.0.0 → 13.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -10,6 +10,12 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 13.0.1 — 2022-01-20
14
+
15
+ ### 🐛 Bug fixes
16
+
17
+ - Fix the `PhaseScriptExecution` build errors when the `source_login_scripts.sh` failed to load. ([#15890](https://github.com/expo/expo/pull/15890) by [@kudo](https://github.com/kudo))
18
+
13
19
  ## 13.0.0 — 2021-12-03
14
20
 
15
21
  ### 🛠 Breaking changes
@@ -3,7 +3,7 @@ apply plugin: 'kotlin-android'
3
3
  apply plugin: 'maven'
4
4
 
5
5
  group = 'host.exp.exponent'
6
- version = '13.0.0'
6
+ version = '13.0.1'
7
7
 
8
8
  apply from: "../scripts/get-app-config-android.gradle"
9
9
 
@@ -63,7 +63,7 @@ android {
63
63
  minSdkVersion safeExtGet("minSdkVersion", 21)
64
64
  targetSdkVersion safeExtGet("targetSdkVersion", 30)
65
65
  versionCode 33
66
- versionName "13.0.0"
66
+ versionName "13.0.1"
67
67
  }
68
68
  lintOptions {
69
69
  abortOnError false
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-constants",
3
- "version": "13.0.0",
3
+ "version": "13.0.1",
4
4
  "description": "Provides system information that remains constant throughout the lifetime of your app.",
5
5
  "main": "build/Constants.js",
6
6
  "types": "build/Constants.d.ts",
@@ -43,5 +43,5 @@
43
43
  "peerDependencies": {
44
44
  "expo": "*"
45
45
  },
46
- "gitHead": "2e5c6983b86d5ecfca028ba64002897d8adc2cc4"
46
+ "gitHead": "7579c832d695e5d6cc00dfe908941945b4ba8c4a"
47
47
  }
@@ -8,7 +8,10 @@ RESOURCE_BUNDLE_NAME="EXConstants.bundle"
8
8
  # Path to expo-constants folder inside node_modules
9
9
  EXPO_CONSTANTS_PACKAGE_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
10
10
 
11
+ # Suppress environment errors from sourcing the login scripts
12
+ set +e
11
13
  source "$EXPO_CONSTANTS_PACKAGE_DIR/scripts/source-login-scripts.sh"
14
+ set -e
12
15
 
13
16
  NODE_BINARY=${NODE_BINARY:-node}
14
17