expo-image-loader 4.5.0 → 4.6.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,17 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 4.6.0 — 2023-11-14
14
+
15
+ ### 🛠 Breaking changes
16
+
17
+ - Bumped iOS deployment target to 13.4. ([#25063](https://github.com/expo/expo/pull/25063) by [@gabrieldonadel](https://github.com/gabrieldonadel))
18
+ - On `Android` bump `compileSdkVersion` and `targetSdkVersion` to `34`. ([#24708](https://github.com/expo/expo/pull/24708) by [@alanjhughes](https://github.com/alanjhughes))
19
+
20
+ ### 💡 Others
21
+
22
+ - Renamed `unimodule.json` to `expo-module.config.json`. ([#25100](https://github.com/expo/expo/pull/25100) by [@reichhartd](https://github.com/reichhartd))
23
+
13
24
  ## 4.5.0 — 2023-10-17
14
25
 
15
26
  ### 🛠 Breaking changes
@@ -38,7 +38,7 @@ buildscript {
38
38
  }
39
39
 
40
40
  group = 'host.exp.exponent'
41
- version = '4.5.0'
41
+ version = '4.6.0'
42
42
 
43
43
  // Remove this if and it's contents, when support for SDK49 is dropped
44
44
  if (!safeExtGet("expoProvidesDefaultConfig", false)) {
@@ -61,11 +61,11 @@ if (!safeExtGet("expoProvidesDefaultConfig", false)) {
61
61
  android {
62
62
  // Remove this if and it's contents, when support for SDK49 is dropped
63
63
  if (!safeExtGet("expoProvidesDefaultConfig", false)) {
64
- compileSdkVersion safeExtGet("compileSdkVersion", 33)
64
+ compileSdkVersion safeExtGet("compileSdkVersion", 34)
65
65
 
66
66
  defaultConfig {
67
67
  minSdkVersion safeExtGet("minSdkVersion", 23)
68
- targetSdkVersion safeExtGet("targetSdkVersion", 33)
68
+ targetSdkVersion safeExtGet("targetSdkVersion", 34)
69
69
  }
70
70
 
71
71
  publishing {
@@ -94,7 +94,7 @@ android {
94
94
  namespace "expo.modules.imageloader"
95
95
  defaultConfig {
96
96
  versionCode 8
97
- versionName "4.5.0"
97
+ versionName "4.6.0"
98
98
  }
99
99
  }
100
100
 
@@ -0,0 +1,3 @@
1
+ {
2
+ "platforms": ["ios", "android"]
3
+ }
@@ -10,7 +10,7 @@ Pod::Spec.new do |s|
10
10
  s.license = package['license']
11
11
  s.author = package['author']
12
12
  s.homepage = package['homepage']
13
- s.platform = :ios, '13.0'
13
+ s.platform = :ios, '13.4'
14
14
  s.source = { git: 'https://github.com/expo/expo.git' }
15
15
  s.static_framework = true
16
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-image-loader",
3
- "version": "4.5.0",
3
+ "version": "4.6.0",
4
4
  "description": "Image loader",
5
5
  "main": "index.js",
6
6
  "keywords": [
@@ -24,5 +24,5 @@
24
24
  "peerDependencies": {
25
25
  "expo": "*"
26
26
  },
27
- "gitHead": "da25937e2a99661cbe5eb60ca1d8d6245fc96a50"
27
+ "gitHead": "3142a086578deffd8704a8f1b6f0f661527d836c"
28
28
  }
package/unimodule.json DELETED
@@ -1,4 +0,0 @@
1
- {
2
- "name": "expo-image-loader",
3
- "platforms": ["android", "ios"]
4
- }