expo-eas-client 0.3.0 → 0.4.1
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 +2 -3
- package/ios/EASClient.podspec +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,18 @@
|
|
|
10
10
|
|
|
11
11
|
### 💡 Others
|
|
12
12
|
|
|
13
|
+
## 0.4.1 — 2022-11-02
|
|
14
|
+
|
|
15
|
+
### 💡 Others
|
|
16
|
+
|
|
17
|
+
- Removed deprecated Android `kotlin-android-extensions` plugin ([#19732](https://github.com/expo/expo/pull/19732) by [@josephyanks](https://github.com/josephyanks))
|
|
18
|
+
|
|
19
|
+
## 0.4.0 — 2022-10-25
|
|
20
|
+
|
|
21
|
+
### 🛠 Breaking changes
|
|
22
|
+
|
|
23
|
+
- Bumped iOS deployment target to 13.0 and deprecated support for iOS 12. ([#18873](https://github.com/expo/expo/pull/18873) by [@tsapeta](https://github.com/tsapeta))
|
|
24
|
+
|
|
13
25
|
## 0.3.0 — 2022-07-07
|
|
14
26
|
|
|
15
27
|
### 💡 Others
|
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.4.1'
|
|
8
7
|
|
|
9
8
|
buildscript {
|
|
10
9
|
def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
|
|
@@ -75,7 +74,7 @@ android {
|
|
|
75
74
|
minSdkVersion safeExtGet("minSdkVersion", 21)
|
|
76
75
|
targetSdkVersion safeExtGet("targetSdkVersion", 31)
|
|
77
76
|
versionCode 1
|
|
78
|
-
versionName "0.
|
|
77
|
+
versionName "0.4.1"
|
|
79
78
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
80
79
|
}
|
|
81
80
|
testOptions {
|
package/ios/EASClient.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.platform = :ios, '
|
|
13
|
+
s.platform = :ios, '13.0'
|
|
14
14
|
s.swift_version = '5.4'
|
|
15
15
|
s.source = { git: '' }
|
|
16
16
|
s.static_framework = true
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-eas-client",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.1",
|
|
4
4
|
"description": "Stable client identifier for EAS services",
|
|
5
5
|
"main": "build/index.js",
|
|
6
6
|
"types": "build/index.d.ts",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"preset": "expo-module-scripts"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
|
-
"expo-module-scripts": "^
|
|
38
|
+
"expo-module-scripts": "^3.0.0"
|
|
39
39
|
},
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "1a87dcc55895a9e16e3d4fd0fa78f2244c1d961f"
|
|
41
41
|
}
|