expo-image-manipulator 12.0.2 → 12.0.3

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
+ ## 12.0.3 — 2024-05-01
14
+
15
+ _This version does not introduce any user-facing changes._
16
+
13
17
  ## 12.0.2 — 2024-04-23
14
18
 
15
19
  _This version does not introduce any user-facing changes._
@@ -1,7 +1,7 @@
1
1
  apply plugin: 'com.android.library'
2
2
 
3
3
  group = 'host.exp.exponent'
4
- version = '12.0.2'
4
+ version = '12.0.3'
5
5
 
6
6
  def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
7
7
  apply from: expoModulesCorePlugin
@@ -14,7 +14,7 @@ android {
14
14
  namespace "expo.modules.imagemanipulator"
15
15
  defaultConfig {
16
16
  versionCode 23
17
- versionName "12.0.2"
17
+ versionName "12.0.3"
18
18
  }
19
19
  }
20
20
 
@@ -30,6 +30,7 @@ internal object FileUtils {
30
30
  if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.R) {
31
31
  CompressFormat.WEBP_LOSSY
32
32
  } else {
33
+ @Suppress("DEPRECATION")
33
34
  CompressFormat.WEBP
34
35
  } -> ".webp"
35
36
  else -> ".jpg"
@@ -23,6 +23,7 @@ data class SaveOptions(
23
23
  ImageFormat.WEBP -> if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.R) {
24
24
  CompressFormat.WEBP_LOSSY
25
25
  } else {
26
+ @Suppress("DEPRECATION")
26
27
  CompressFormat.WEBP
27
28
  }
28
29
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-image-manipulator",
3
- "version": "12.0.2",
3
+ "version": "12.0.3",
4
4
  "description": "Provides functions that let you manipulation images on the local file system, eg: resize, crop.",
5
5
  "main": "build/ImageManipulator.js",
6
6
  "types": "build/ImageManipulator.d.ts",
@@ -39,5 +39,5 @@
39
39
  "peerDependencies": {
40
40
  "expo": "*"
41
41
  },
42
- "gitHead": "ee4f30ef3b5fa567ad1bf94794197f7683fdd481"
42
+ "gitHead": "87bd0dfa8b784a834191195ca174a00dd30ee5b7"
43
43
  }