expo-image-manipulator 13.0.7-canary-20250404-3c3b5fd → 13.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
@@ -8,6 +8,12 @@
8
8
 
9
9
  ### 🐛 Bug fixes
10
10
 
11
+ ### 💡 Others
12
+
13
+ ## 13.1.0 — 2025-04-04
14
+
15
+ ### 🐛 Bug fixes
16
+
11
17
  - Changed `export` to `export type` for TS type declarations. ([#33446](https://github.com/expo/expo/pull/33446) by [@j-piasecki](https://github.com/j-piasecki))
12
18
  - Fixed `saveAsync` not respecting the format and compression quality. ([#33690](https://github.com/expo/expo/pull/33690) by [@tsapeta](https://github.com/tsapeta))
13
19
 
@@ -4,13 +4,13 @@ plugins {
4
4
  }
5
5
 
6
6
  group = 'host.exp.exponent'
7
- version = '13.0.5'
7
+ version = '13.1.0'
8
8
 
9
9
  android {
10
10
  namespace "expo.modules.imagemanipulator"
11
11
  defaultConfig {
12
12
  versionCode 23
13
- versionName "13.0.5"
13
+ versionName "13.1.0"
14
14
  }
15
15
  }
16
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-image-manipulator",
3
- "version": "13.0.7-canary-20250404-3c3b5fd",
3
+ "version": "13.1.0",
4
4
  "description": "Provides functions that let you manipulation images on the local file system, eg: resize, crop.",
5
5
  "main": "src/index.ts",
6
6
  "types": "build/index.d.ts",
@@ -31,12 +31,13 @@
31
31
  "license": "MIT",
32
32
  "homepage": "https://docs.expo.dev/versions/latest/sdk/imagemanipulator/",
33
33
  "dependencies": {
34
- "expo-image-loader": "5.0.1-canary-20250404-3c3b5fd"
34
+ "expo-image-loader": "~5.1.0"
35
35
  },
36
36
  "devDependencies": {
37
- "expo-module-scripts": "4.0.6-canary-20250404-3c3b5fd"
37
+ "expo-module-scripts": "^4.1.0"
38
38
  },
39
39
  "peerDependencies": {
40
- "expo": "53.0.0-canary-20250404-3c3b5fd"
41
- }
40
+ "expo": "*"
41
+ },
42
+ "gitHead": "68b8233002dc678934ba40cbade7fbc80e71aeff"
42
43
  }