expo-video-thumbnails 9.0.0-canary-20241021-c4b5a93 → 9.0.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 +10 -2
- package/android/build.gradle +2 -2
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -4,12 +4,20 @@
|
|
|
4
4
|
|
|
5
5
|
### 🛠 Breaking changes
|
|
6
6
|
|
|
7
|
-
- Bumped iOS deployment target to 15.1. ([#30840](https://github.com/expo/expo/pull/30840) by [@tsapeta](https://github.com/tsapeta))
|
|
8
|
-
|
|
9
7
|
### 🎉 New features
|
|
10
8
|
|
|
11
9
|
### 🐛 Bug fixes
|
|
12
10
|
|
|
11
|
+
### 💡 Others
|
|
12
|
+
|
|
13
|
+
## 9.0.0 — 2024-10-22
|
|
14
|
+
|
|
15
|
+
### 🛠 Breaking changes
|
|
16
|
+
|
|
17
|
+
- Bumped iOS deployment target to 15.1. ([#30840](https://github.com/expo/expo/pull/30840) by [@tsapeta](https://github.com/tsapeta))
|
|
18
|
+
|
|
19
|
+
### 🐛 Bug fixes
|
|
20
|
+
|
|
13
21
|
- [Android] Fixed a crash when the source cannot be retrieved. ([#28961](https://github.com/expo/expo/pull/28961) by [@mrakesh0608](https://github.com/mrakesh0608))
|
|
14
22
|
|
|
15
23
|
### 💡 Others
|
package/android/build.gradle
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
apply plugin: 'com.android.library'
|
|
2
2
|
|
|
3
3
|
group = 'host.exp.exponent'
|
|
4
|
-
version = '
|
|
4
|
+
version = '9.0.0'
|
|
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.videothumbnails"
|
|
15
15
|
defaultConfig {
|
|
16
16
|
versionCode 14
|
|
17
|
-
versionName '
|
|
17
|
+
versionName '9.0.0'
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
20
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-video-thumbnails",
|
|
3
|
-
"version": "9.0.0
|
|
3
|
+
"version": "9.0.0",
|
|
4
4
|
"description": "Provides function that let you generate an image from video.",
|
|
5
5
|
"main": "build/VideoThumbnails.js",
|
|
6
6
|
"types": "build/VideoThumbnails.d.ts",
|
|
@@ -34,10 +34,10 @@
|
|
|
34
34
|
"homepage": "https://docs.expo.dev/versions/latest/sdk/video-thumbnails/",
|
|
35
35
|
"dependencies": {},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"expo-module-scripts": "
|
|
37
|
+
"expo-module-scripts": "^4.0.0"
|
|
38
38
|
},
|
|
39
39
|
"peerDependencies": {
|
|
40
|
-
"expo": "
|
|
40
|
+
"expo": "*"
|
|
41
41
|
},
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "685ebb8a213326cb33c80281ca8756b374ccb63d"
|
|
43
43
|
}
|