expo-eas-client 0.1.0 → 0.2.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 +13 -3
- package/android/build.gradle +10 -10
- package/package.json +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -4,15 +4,25 @@
|
|
|
4
4
|
|
|
5
5
|
### 🛠 Breaking changes
|
|
6
6
|
|
|
7
|
-
- Change package name. ([#16884](https://github.com/expo/expo/pull/16884) by [@wschurman](https://github.com/wschurman))
|
|
8
|
-
|
|
9
7
|
### 🎉 New features
|
|
10
8
|
|
|
11
9
|
### 🐛 Bug fixes
|
|
12
10
|
|
|
11
|
+
### 💡 Others
|
|
12
|
+
|
|
13
|
+
## 0.2.0 — 2022-04-18
|
|
14
|
+
|
|
15
|
+
### 🛠 Breaking changes
|
|
16
|
+
|
|
17
|
+
- Change package name. ([#16884](https://github.com/expo/expo/pull/16884) by [@wschurman](https://github.com/wschurman))
|
|
18
|
+
|
|
19
|
+
### 🐛 Bug fixes
|
|
20
|
+
|
|
13
21
|
- Fixed import error on Web. ([#16810](https://github.com/expo/expo/pull/16810) by [@kudo](https://github.com/kudo))
|
|
14
22
|
|
|
15
|
-
###
|
|
23
|
+
### ⚠️ Notices
|
|
24
|
+
|
|
25
|
+
- On Android bump `compileSdkVersion` to `31`, `targetSdkVersion` to `31` and `Java` version to `11`. ([#16941](https://github.com/expo/expo/pull/16941) by [@bbarthec](https://github.com/bbarthec))
|
|
16
26
|
|
|
17
27
|
## 0.1.0 — 2022-03-28
|
|
18
28
|
|
package/android/build.gradle
CHANGED
|
@@ -4,7 +4,7 @@ apply plugin: 'kotlin-android-extensions'
|
|
|
4
4
|
apply plugin: 'maven-publish'
|
|
5
5
|
|
|
6
6
|
group = 'host.exp.exponent'
|
|
7
|
-
version = '0.
|
|
7
|
+
version = '0.2.0'
|
|
8
8
|
|
|
9
9
|
buildscript {
|
|
10
10
|
def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
|
|
@@ -60,22 +60,22 @@ afterEvaluate {
|
|
|
60
60
|
}
|
|
61
61
|
|
|
62
62
|
android {
|
|
63
|
-
compileSdkVersion safeExtGet("compileSdkVersion",
|
|
63
|
+
compileSdkVersion safeExtGet("compileSdkVersion", 31)
|
|
64
64
|
|
|
65
65
|
compileOptions {
|
|
66
|
-
sourceCompatibility JavaVersion.
|
|
67
|
-
targetCompatibility JavaVersion.
|
|
66
|
+
sourceCompatibility JavaVersion.VERSION_11
|
|
67
|
+
targetCompatibility JavaVersion.VERSION_11
|
|
68
68
|
}
|
|
69
69
|
|
|
70
70
|
kotlinOptions {
|
|
71
|
-
jvmTarget = JavaVersion.
|
|
71
|
+
jvmTarget = JavaVersion.VERSION_11.majorVersion
|
|
72
72
|
}
|
|
73
73
|
|
|
74
74
|
defaultConfig {
|
|
75
75
|
minSdkVersion safeExtGet("minSdkVersion", 21)
|
|
76
|
-
targetSdkVersion safeExtGet("targetSdkVersion",
|
|
76
|
+
targetSdkVersion safeExtGet("targetSdkVersion", 31)
|
|
77
77
|
versionCode 1
|
|
78
|
-
versionName "0.
|
|
78
|
+
versionName "0.2.0"
|
|
79
79
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
80
80
|
}
|
|
81
81
|
testOptions {
|
|
@@ -95,8 +95,8 @@ dependencies {
|
|
|
95
95
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:${getKotlinVersion()}"
|
|
96
96
|
|
|
97
97
|
androidTestImplementation 'org.amshove.kluent:kluent-android:1.68'
|
|
98
|
-
androidTestImplementation 'androidx.test:runner:1.
|
|
99
|
-
androidTestImplementation 'androidx.test:core:1.
|
|
100
|
-
androidTestImplementation 'androidx.test:rules:1.
|
|
98
|
+
androidTestImplementation 'androidx.test:runner:1.4.0'
|
|
99
|
+
androidTestImplementation 'androidx.test:core:1.4.0'
|
|
100
|
+
androidTestImplementation 'androidx.test:rules:1.4.0'
|
|
101
101
|
androidTestImplementation 'io.mockk:mockk-android:1.12.3'
|
|
102
102
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-eas-client",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Stable client identifier for EAS services",
|
|
5
5
|
"main": "build/index.js",
|
|
6
6
|
"types": "build/index.d.ts",
|
|
@@ -36,5 +36,6 @@
|
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"expo-module-scripts": "^2.0.0"
|
|
39
|
-
}
|
|
39
|
+
},
|
|
40
|
+
"gitHead": "5af27f1b9ad515160b5fed3dd6350faa5055bdff"
|
|
40
41
|
}
|