expo-eas-client 1.0.0-canary-20241021-c4b5a93 → 1.0.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 CHANGED
@@ -4,14 +4,62 @@
4
4
 
5
5
  ### 🛠 Breaking changes
6
6
 
7
- - Bumped iOS and tvOS deployment target to 15.1. ([#30840](https://github.com/expo/expo/pull/30840) by [@tsapeta](https://github.com/tsapeta))
8
-
9
7
  ### 🎉 New features
10
8
 
11
9
  ### 🐛 Bug fixes
12
10
 
13
11
  ### 💡 Others
14
12
 
13
+ ## 1.0.1 — 2025-08-15
14
+
15
+ _This version does not introduce any user-facing changes._
16
+
17
+ ## 1.0.0 — 2025-08-13
18
+
19
+ ### 🎉 New features
20
+
21
+ - Add support for macOS. ([#37629](https://github.com/expo/expo/pull/37629) by [@gabrieldonadel](https://github.com/gabrieldonadel))
22
+
23
+ ## 0.14.4 - 2025-07-03
24
+
25
+ _This version does not introduce any user-facing changes._
26
+
27
+ ## 0.14.3 — 2025-04-30
28
+
29
+ _This version does not introduce any user-facing changes._
30
+
31
+ ## 0.14.2 — 2025-04-25
32
+
33
+ _This version does not introduce any user-facing changes._
34
+
35
+ ## 0.14.1 — 2025-04-14
36
+
37
+ _This version does not introduce any user-facing changes._
38
+
39
+ ## 0.14.0 — 2025-04-04
40
+
41
+ ### 💡 Others
42
+
43
+ - [Android] Started using expo modules gradle plugin. ([#34176](https://github.com/expo/expo/pull/34176) by [@lukmccall](https://github.com/lukmccall))
44
+
45
+ ## 0.13.3 - 2025-02-21
46
+
47
+ _This version does not introduce any user-facing changes._
48
+
49
+ ## 0.13.2 - 2025-01-10
50
+
51
+ _This version does not introduce any user-facing changes._
52
+
53
+ ## 0.13.1 — 2024-10-22
54
+
55
+ _This version does not introduce any user-facing changes._
56
+
57
+ ## 0.13.0 — 2024-10-22
58
+
59
+ ### 🛠 Breaking changes
60
+
61
+ - Bumped iOS and tvOS deployment target to 15.1. ([#30840](https://github.com/expo/expo/pull/30840) by [@tsapeta](https://github.com/tsapeta))
62
+
15
63
  ## 0.12.0 — 2024-04-18
16
64
 
17
65
  ### 💡 Others
@@ -1,20 +1,20 @@
1
- apply plugin: 'com.android.library'
1
+ plugins {
2
+ id 'com.android.library'
3
+ id 'expo-module-gradle-plugin'
4
+ }
2
5
 
3
6
  group = 'host.exp.exponent'
4
- version = '0.12.0'
7
+ version = '1.0.1'
5
8
 
6
- def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
7
- apply from: expoModulesCorePlugin
8
- applyKotlinExpoModulesCorePlugin()
9
- useCoreDependencies()
10
- useDefaultAndroidSdkVersions()
11
- useExpoPublishing()
9
+ expoModule {
10
+ canBePublished false
11
+ }
12
12
 
13
13
  android {
14
14
  namespace "expo.modules.easclient"
15
15
  defaultConfig {
16
16
  versionCode 1
17
- versionName "0.12.0"
17
+ versionName "1.0.1"
18
18
  testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
19
19
  }
20
20
  testOptions {
@@ -12,9 +12,10 @@ Pod::Spec.new do |s|
12
12
  s.homepage = package['homepage']
13
13
  s.platforms = {
14
14
  :ios => '15.1',
15
- :tvos => '15.1'
15
+ :tvos => '15.1',
16
+ :osx => '11.0'
16
17
  }
17
- s.swift_version = '5.4'
18
+ s.swift_version = '5.9'
18
19
  s.source = { git: '' }
19
20
  s.static_framework = true
20
21
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-eas-client",
3
- "version": "1.0.0-canary-20241021-c4b5a93",
3
+ "version": "1.0.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": "3.6.0-canary-20241021-c4b5a93"
38
+ "expo-module-scripts": "^5.0.1"
39
39
  },
40
- "gitHead": "c4b5a932011f3dfab7a0302ff32cce7c33aa7c28"
40
+ "gitHead": "2f7f90d0736af48cb542ccbc8addb836e330693a"
41
41
  }