expo-maps 0.4.2-canary-20240719-83ee47b → 1.0.0-canary-20240814-ce0f7d5

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 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
package/build/Map.d.ts CHANGED
@@ -28,6 +28,6 @@ export declare class ExpoMap extends React.Component<ExpoMapViewProps> {
28
28
  componentWillUnmount(): void;
29
29
  componentDidUpdate(_: any, prevState: ExpoMapState): void;
30
30
  private mapChildren;
31
- render(): JSX.Element;
31
+ render(): React.JSX.Element;
32
32
  }
33
33
  //# sourceMappingURL=Map.d.ts.map
@@ -10,7 +10,9 @@ 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.4'
13
+ s.platforms = {
14
+ :ios => '15.1'
15
+ }
14
16
  s.source = { git: 'https://github.com/expo/expo.git' }
15
17
  s.static_framework = true
16
18
  s.source_files = 'ExpoMaps/**/*.{h,m,swift}'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-maps",
3
- "version": "0.4.2-canary-20240719-83ee47b",
3
+ "version": "1.0.0-canary-20240814-ce0f7d5",
4
4
  "description": "Provides a Map component that uses Google Maps on Android and Apple Maps or Google Maps on iOS.",
5
5
  "main": "build/Map.js",
6
6
  "types": "build/Map.d.ts",
@@ -33,10 +33,10 @@
33
33
  "license": "MIT",
34
34
  "homepage": "https://docs.expo.dev",
35
35
  "dependencies": {
36
- "expo-asset": "10.0.11-canary-20240719-83ee47b"
36
+ "expo-asset": "11.0.0-canary-20240814-ce0f7d5"
37
37
  },
38
38
  "devDependencies": {
39
- "expo-module-scripts": "3.6.0-canary-20240719-83ee47b"
39
+ "expo-module-scripts": "3.6.0-canary-20240814-ce0f7d5"
40
40
  },
41
41
  "peerDependencies": {
42
42
  "expo": "*",
@@ -46,5 +46,5 @@
46
46
  "jest": {
47
47
  "preset": "expo-module-scripts/ios"
48
48
  },
49
- "gitHead": "83ee47b5c89c7f1b1a5101189580eaf3555f5962"
49
+ "gitHead": "ce0f7d5c7eaec2c8d06ee4e0dc0e58cd6c1612ed"
50
50
  }
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
  }