expo-image-loader 3.0.0 → 3.1.0

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,10 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 3.1.0 — 2021-12-03
14
+
15
+ _This version does not introduce any user-facing changes._
16
+
13
17
  ## 3.0.0 — 2021-09-28
14
18
 
15
19
  ### 🛠 Breaking changes
package/README.md CHANGED
@@ -8,7 +8,7 @@ For [managed](https://docs.expo.io/versions/latest/introduction/managed-vs-bare/
8
8
 
9
9
  # Installation in bare React Native projects
10
10
 
11
- For bare React Native projects, you must ensure that you have [installed and configured the `react-native-unimodules` package](https://github.com/expo/expo/tree/master/packages/react-native-unimodules) before continuing.
11
+ For bare React Native projects, you must ensure that you have [installed and configured the `expo` package](https://docs.expo.dev/bare/installing-expo-modules/) before continuing.
12
12
 
13
13
  ### Add the package to your npm dependencies
14
14
 
@@ -18,7 +18,7 @@ buildscript {
18
18
  }
19
19
 
20
20
  group = 'host.exp.exponent'
21
- version = '3.0.0'
21
+ version = '3.1.0'
22
22
 
23
23
  // Upload android library to maven with javadoc and android sources
24
24
  configurations {
@@ -57,7 +57,7 @@ android {
57
57
  minSdkVersion safeExtGet("minSdkVersion", 21)
58
58
  targetSdkVersion safeExtGet("targetSdkVersion", 30)
59
59
  versionCode 8
60
- versionName "3.0.0"
60
+ versionName "3.1.0"
61
61
  }
62
62
  lintOptions {
63
63
  abortOnError false
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-image-loader",
3
- "version": "3.0.0",
3
+ "version": "3.1.0",
4
4
  "description": "Image loader",
5
5
  "main": "index.js",
6
6
  "keywords": [
@@ -19,5 +19,10 @@
19
19
  "author": "650 Industries, Inc.",
20
20
  "license": "MIT",
21
21
  "homepage": "https://github.com/expo/expo/tree/master/packages/expo-image-loader",
22
- "gitHead": "1fffde73411ee7a642b98f1506a8de921805d52b"
22
+ "dependencies": {},
23
+ "devDependencies": {},
24
+ "peerDependencies": {
25
+ "expo": "*"
26
+ },
27
+ "gitHead": "2e5c6983b86d5ecfca028ba64002897d8adc2cc4"
23
28
  }