Skip to content

Commit

Permalink
feat: upgrade iOS to 6.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
KiwiKilian committed Dec 16, 2024
1 parent 9d83dfd commit aafa14c
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 9 deletions.
6 changes: 3 additions & 3 deletions docs/guides/setup/iOS.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Add the following to your `ios/Podfile`:
end
```

Running `pod install` will add version `6.8.1` of the MapLibre SDK.
Running `pod install` will add version `6.9.0` of the MapLibre SDK.

```sh
# Go to the ios directory
Expand All @@ -33,7 +33,7 @@ until this is fixed upstream. iOS devs can open the workspace in Xcode and run f

## Installing a specific version

The current default MapLibre version is `6.8.1`.
The current default MapLibre version is `6.9.0`.
If you want to install a different version, you can override as follows in
your `Podfile`:

Expand All @@ -42,7 +42,7 @@ $MLRN_SPM_Spec = {
url: "https://github.com/maplibre/maplibre-gl-native-distribution",
requirement: {
kind: "upToNextMajorVersion",
minimumVersion: "6.8.1"
minimumVersion: "6.9.0"
},
product_name: "MapLibre"
}
Expand Down
2 changes: 1 addition & 1 deletion maplibre-react-native.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def $MLRN.post_install(installer)
url: "https://github.com/maplibre/maplibre-gl-native-distribution",
requirement: {
kind: "exactVersion",
version: "6.8.1"
version: "6.9.0"
},
product_name: "MapLibre"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,10 @@
"-DFOLLY_CFG_NO_COROUTINES=1",
"-DFOLLY_HAVE_CLOCK_GETTIME=1",
);
OTHER_LDFLAGS = "$(inherited) ";
OTHER_LDFLAGS = (
"$(inherited)",
" ",
);
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
SDKROOT = iphoneos;
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) DEBUG";
Expand Down Expand Up @@ -459,7 +462,10 @@
"-DFOLLY_CFG_NO_COROUTINES=1",
"-DFOLLY_HAVE_CLOCK_GETTIME=1",
);
OTHER_LDFLAGS = "$(inherited) ";
OTHER_LDFLAGS = (
"$(inherited)",
" ",
);
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
SDKROOT = iphoneos;
USE_HERMES = true;
Expand Down Expand Up @@ -496,7 +502,7 @@
repositoryURL = "https://github.com/maplibre/maplibre-gl-native-distribution";
requirement = {
kind = exactVersion;
version = 6.8.1;
version = 6.9.0;
};
};
/* End XCRemoteSwiftPackageReference section */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/maplibre/maplibre-gl-native-distribution",
"state" : {
"revision" : "b84a0decbe9ca1caeff1402efdce71349c09d790",
"version" : "6.8.1"
"revision" : "93cb32c95b48f62edb27c75792038849cdfdaa35",
"version" : "6.9.0"
}
}
],
Expand Down

0 comments on commit aafa14c

Please sign in to comment.