expo-eas-client 0.4.0 → 0.5.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 +12 -0
- package/android/build.gradle +4 -5
- package/ios/EASClient.podspec +3 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,18 @@
|
|
|
10
10
|
|
|
11
11
|
### 💡 Others
|
|
12
12
|
|
|
13
|
+
## 0.5.0 — 2023-02-03
|
|
14
|
+
|
|
15
|
+
### 💡 Others
|
|
16
|
+
|
|
17
|
+
- On Android bump `compileSdkVersion` and `targetSdkVersion` to `33`. ([#20721](https://github.com/expo/expo/pull/20721) by [@lukmccall](https://github.com/lukmccall))
|
|
18
|
+
|
|
19
|
+
## 0.4.1 — 2022-11-02
|
|
20
|
+
|
|
21
|
+
### 💡 Others
|
|
22
|
+
|
|
23
|
+
- Removed deprecated Android `kotlin-android-extensions` plugin ([#19732](https://github.com/expo/expo/pull/19732) by [@josephyanks](https://github.com/josephyanks))
|
|
24
|
+
|
|
13
25
|
## 0.4.0 — 2022-10-25
|
|
14
26
|
|
|
15
27
|
### 🛠 Breaking changes
|
package/android/build.gradle
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
apply plugin: 'com.android.library'
|
|
2
2
|
apply plugin: 'kotlin-android'
|
|
3
|
-
apply plugin: 'kotlin-android-extensions'
|
|
4
3
|
apply plugin: 'maven-publish'
|
|
5
4
|
|
|
6
5
|
group = 'host.exp.exponent'
|
|
7
|
-
version = '0.
|
|
6
|
+
version = '0.5.0'
|
|
8
7
|
|
|
9
8
|
buildscript {
|
|
10
9
|
def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
|
|
@@ -60,7 +59,7 @@ afterEvaluate {
|
|
|
60
59
|
}
|
|
61
60
|
|
|
62
61
|
android {
|
|
63
|
-
compileSdkVersion safeExtGet("compileSdkVersion",
|
|
62
|
+
compileSdkVersion safeExtGet("compileSdkVersion", 33)
|
|
64
63
|
|
|
65
64
|
compileOptions {
|
|
66
65
|
sourceCompatibility JavaVersion.VERSION_11
|
|
@@ -73,9 +72,9 @@ android {
|
|
|
73
72
|
|
|
74
73
|
defaultConfig {
|
|
75
74
|
minSdkVersion safeExtGet("minSdkVersion", 21)
|
|
76
|
-
targetSdkVersion safeExtGet("targetSdkVersion",
|
|
75
|
+
targetSdkVersion safeExtGet("targetSdkVersion", 33)
|
|
77
76
|
versionCode 1
|
|
78
|
-
versionName "0.
|
|
77
|
+
versionName "0.5.0"
|
|
79
78
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
80
79
|
}
|
|
81
80
|
testOptions {
|
package/ios/EASClient.podspec
CHANGED
|
@@ -33,6 +33,9 @@ Pod::Spec.new do |s|
|
|
|
33
33
|
end
|
|
34
34
|
|
|
35
35
|
s.test_spec 'Tests' do |test_spec|
|
|
36
|
+
# ExpoModulesCore requires React-hermes or React-jsc in tests, add ExpoModulesTestCore for the underlying dependencies
|
|
37
|
+
test_spec.dependency 'ExpoModulesTestCore'
|
|
38
|
+
|
|
36
39
|
test_spec.source_files = 'Tests/*.{h,m,swift}'
|
|
37
40
|
end
|
|
38
41
|
end
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-eas-client",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.0",
|
|
4
4
|
"description": "Stable client identifier for EAS services",
|
|
5
5
|
"main": "build/index.js",
|
|
6
6
|
"types": "build/index.d.ts",
|
|
@@ -37,5 +37,5 @@
|
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"expo-module-scripts": "^3.0.0"
|
|
39
39
|
},
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "1815e2eaad8c753588c7b1eb74420174a28e01f4"
|
|
41
41
|
}
|