expo-eas-client 0.12.1-canary-20240719-83ee47b → 1.0.0-canary-20240904-69100c1

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,6 +4,8 @@
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
+
7
9
  ### 🎉 New features
8
10
 
9
11
  ### 🐛 Bug fixes
@@ -10,7 +10,10 @@ 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.4', :tvos => '13.4' }
13
+ s.platforms = {
14
+ :ios => '15.1',
15
+ :tvos => '15.1'
16
+ }
14
17
  s.swift_version = '5.4'
15
18
  s.source = { git: '' }
16
19
  s.static_framework = true
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-eas-client",
3
- "version": "0.12.1-canary-20240719-83ee47b",
3
+ "version": "1.0.0-canary-20240904-69100c1",
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-20240719-83ee47b"
38
+ "expo-module-scripts": "3.6.0-canary-20240904-69100c1"
39
39
  },
40
- "gitHead": "83ee47b5c89c7f1b1a5101189580eaf3555f5962"
40
+ "gitHead": "69100c1b099b707057c052ed8096e06cb208aca1"
41
41
  }
package/tsconfig.json CHANGED
@@ -5,5 +5,5 @@
5
5
  "outDir": "./build"
6
6
  },
7
7
  "include": ["./src"],
8
- "exclude": ["**/__mocks__/*", "**/__tests__/*"]
8
+ "exclude": ["**/__mocks__/*", "**/__tests__/*", "**/__rsc_tests__/*"]
9
9
  }