expo-manifests 0.11.0 → 0.12.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 +7 -0
- package/android/build.gradle +4 -4
- package/ios/EXManifests.podspec +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,13 @@
|
|
|
10
10
|
|
|
11
11
|
### 💡 Others
|
|
12
12
|
|
|
13
|
+
## 0.12.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
|
+
|
|
13
20
|
## 0.11.0 — 2023-10-17
|
|
14
21
|
|
|
15
22
|
_This version does not introduce any user-facing changes._
|
package/android/build.gradle
CHANGED
|
@@ -3,7 +3,7 @@ apply plugin: 'kotlin-android'
|
|
|
3
3
|
apply plugin: 'maven-publish'
|
|
4
4
|
|
|
5
5
|
group = 'host.exp.exponent'
|
|
6
|
-
version = '0.
|
|
6
|
+
version = '0.12.0'
|
|
7
7
|
|
|
8
8
|
def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
|
|
9
9
|
if (expoModulesCorePlugin.exists()) {
|
|
@@ -60,11 +60,11 @@ if (!safeExtGet("expoProvidesDefaultConfig", false)) {
|
|
|
60
60
|
android {
|
|
61
61
|
// Remove this if and it's contents, when support for SDK49 is dropped
|
|
62
62
|
if (!safeExtGet("expoProvidesDefaultConfig", false)) {
|
|
63
|
-
compileSdkVersion safeExtGet("compileSdkVersion",
|
|
63
|
+
compileSdkVersion safeExtGet("compileSdkVersion", 34)
|
|
64
64
|
|
|
65
65
|
defaultConfig {
|
|
66
66
|
minSdkVersion safeExtGet("minSdkVersion", 23)
|
|
67
|
-
targetSdkVersion safeExtGet("targetSdkVersion",
|
|
67
|
+
targetSdkVersion safeExtGet("targetSdkVersion", 34)
|
|
68
68
|
}
|
|
69
69
|
|
|
70
70
|
publishing {
|
|
@@ -93,7 +93,7 @@ android {
|
|
|
93
93
|
namespace "expo.modules.manifests"
|
|
94
94
|
defaultConfig {
|
|
95
95
|
versionCode 31
|
|
96
|
-
versionName '0.
|
|
96
|
+
versionName '0.12.0'
|
|
97
97
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
98
98
|
}
|
|
99
99
|
testOptions {
|
package/ios/EXManifests.podspec
CHANGED
|
@@ -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.platforms = { :ios => '13.
|
|
13
|
+
s.platforms = { :ios => '13.4', :tvos => '13.4' }
|
|
14
14
|
s.swift_version = '5.4'
|
|
15
15
|
s.source = { git: 'https://github.com/expo/expo.git' }
|
|
16
16
|
s.static_framework = true
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-manifests",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.12.0",
|
|
4
4
|
"description": "Code to parse and use Expo and Expo Updates manifests.",
|
|
5
5
|
"main": "build/Manifests.js",
|
|
6
6
|
"types": "build/Manifests.d.ts",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"preset": "expo-module-scripts"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"expo-json-utils": "~0.
|
|
37
|
+
"expo-json-utils": "~0.12.0",
|
|
38
38
|
"@expo/config": "~8.4.0"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
@@ -43,5 +43,5 @@
|
|
|
43
43
|
"peerDependencies": {
|
|
44
44
|
"expo": "*"
|
|
45
45
|
},
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "3142a086578deffd8704a8f1b6f0f661527d836c"
|
|
47
47
|
}
|