expo-updates-interface 1.2.0-canary-20250729-d8899ae → 2.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 +6 -2
- package/android/build.gradle +2 -2
- package/package.json +4 -3
package/CHANGELOG.md
CHANGED
|
@@ -6,12 +6,16 @@
|
|
|
6
6
|
|
|
7
7
|
### 🎉 New features
|
|
8
8
|
|
|
9
|
-
- Add support for macOS. ([#37629](https://github.com/expo/expo/pull/37629) by [@gabrieldonadel](https://github.com/gabrieldonadel))
|
|
10
|
-
|
|
11
9
|
### 🐛 Bug fixes
|
|
12
10
|
|
|
13
11
|
### 💡 Others
|
|
14
12
|
|
|
13
|
+
## 2.0.0 — 2025-08-13
|
|
14
|
+
|
|
15
|
+
### 🎉 New features
|
|
16
|
+
|
|
17
|
+
- Add support for macOS. ([#37629](https://github.com/expo/expo/pull/37629) by [@gabrieldonadel](https://github.com/gabrieldonadel))
|
|
18
|
+
|
|
15
19
|
## 1.1.0 — 2025-04-04
|
|
16
20
|
|
|
17
21
|
### 💡 Others
|
package/android/build.gradle
CHANGED
|
@@ -4,7 +4,7 @@ plugins {
|
|
|
4
4
|
}
|
|
5
5
|
|
|
6
6
|
group = 'host.exp.exponent'
|
|
7
|
-
version = '
|
|
7
|
+
version = '2.0.0'
|
|
8
8
|
|
|
9
9
|
expoModule {
|
|
10
10
|
canBePublished false
|
|
@@ -14,6 +14,6 @@ android {
|
|
|
14
14
|
namespace "expo.modules.updatesinterface"
|
|
15
15
|
defaultConfig {
|
|
16
16
|
versionCode 1
|
|
17
|
-
versionName '
|
|
17
|
+
versionName '2.0.0'
|
|
18
18
|
}
|
|
19
19
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-updates-interface",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"description": "Native interface for modules that optionally depend on expo-updates, e.g. expo-dev-launcher.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"keywords": [
|
|
@@ -21,6 +21,7 @@
|
|
|
21
21
|
"homepage": "https://docs.expo.dev",
|
|
22
22
|
"dependencies": {},
|
|
23
23
|
"peerDependencies": {
|
|
24
|
-
"expo": "
|
|
25
|
-
}
|
|
24
|
+
"expo": "*"
|
|
25
|
+
},
|
|
26
|
+
"gitHead": "cb7062e2c17d1fb09522834aaaac0e19b766df62"
|
|
26
27
|
}
|