@maplibre/maplibre-react-native 10.0.0-alpha.10 → 10.0.0-alpha.11

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
@@ -6,6 +6,10 @@ PR Title ([#123](link to my pr))
6
6
 
7
7
  ```
8
8
 
9
+ ## 10.0.0-alpha.11
10
+
11
+ Chore: [bump maplibre native ios to 6.5.4](https://github.com/maplibre/maplibre-react-native/pull/437)
12
+
9
13
  ## 10.0.0-alpha.10
10
14
 
11
15
  Fix: [move @types/ packages to deps and remove assets.d.ts #423](https://github.com/maplibre/maplibre-react-native/pull/423)
@@ -1,2 +1,2 @@
1
- connection.project.dir=
1
+ connection.project.dir=../../example/android
2
2
  eclipse.preferences.version=1
@@ -676,7 +676,7 @@
676
676
  GCC_WARN_UNUSED_FUNCTION = YES;
677
677
  GCC_WARN_UNUSED_VARIABLE = YES;
678
678
  HEADER_SEARCH_PATHS = "$(SRCROOT)/../../../react-native/React";
679
- IPHONEOS_DEPLOYMENT_TARGET = 8.0;
679
+ IPHONEOS_DEPLOYMENT_TARGET = 12.0;
680
680
  MTL_ENABLE_DEBUG_INFO = YES;
681
681
  ONLY_ACTIVE_ARCH = YES;
682
682
  SDKROOT = iphoneos;
@@ -719,7 +719,7 @@
719
719
  GCC_WARN_UNUSED_FUNCTION = YES;
720
720
  GCC_WARN_UNUSED_VARIABLE = YES;
721
721
  HEADER_SEARCH_PATHS = "$(SRCROOT)/../../../react-native/React";
722
- IPHONEOS_DEPLOYMENT_TARGET = 8.0;
722
+ IPHONEOS_DEPLOYMENT_TARGET = 12.0;
723
723
  MTL_ENABLE_DEBUG_INFO = NO;
724
724
  SDKROOT = iphoneos;
725
725
  VALIDATE_PRODUCT = YES;
package/ios/install.md CHANGED
@@ -12,7 +12,7 @@ Add the following to your `ios/Podfile`:
12
12
  end
13
13
  ```
14
14
 
15
- Running `pod install` will add version `6.4.0` of the MapLibre SDK.
15
+ Running `pod install` will add version `6.5.4` of the MapLibre SDK.
16
16
 
17
17
  ```sh
18
18
  # Go to the ios directory
@@ -33,7 +33,7 @@ until this is fixed upstream. iOS devs can open the workspace in Xcode and run f
33
33
 
34
34
  ## Installing a specific version
35
35
 
36
- The current default MapLibre version is `6.4.0`.
36
+ The current default MapLibre version is `6.5.4`.
37
37
  If you want to install a different version, you can override as follows in
38
38
  your `Podfile`:
39
39
 
@@ -42,7 +42,7 @@ $RCTMLN_Use_SPM = {
42
42
  url: "https://github.com/maplibre/maplibre-gl-native-distribution",
43
43
  requirement: {
44
44
  kind: "upToNextMajorVersion",
45
- minimumVersion: "6.4.0"
45
+ minimumVersion: "6.5.4"
46
46
  },
47
47
  product_name: "MapLibre"
48
48
  }
@@ -28,7 +28,7 @@ def $RCTMLN.post_install(installer)
28
28
  url: "https://github.com/maplibre/maplibre-gl-native-distribution",
29
29
  requirement: {
30
30
  kind: "exactVersion",
31
- version: "6.4.0"
31
+ version: "6.5.4"
32
32
  },
33
33
  product_name: "MapLibre"
34
34
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@maplibre/maplibre-react-native",
3
3
  "description": "A MapLibre GL Native plugin for creating maps in React Native",
4
- "version": "10.0.0-alpha.10",
4
+ "version": "10.0.0-alpha.11",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },