Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade mapbox version 11.4.0 -> 11.8.0 #3696

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion example/ios/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ if ENV['CI_MAP_IMPL']
$RNMapboxMapsImpl = 'mapbox'
when 'mapbox11'
$RNMapboxMapsImpl = 'mapbox'
$RNMapboxMapsVersion = '= 11.4.0'
$RNMapboxMapsVersion = '= 11.8.0'
else
fail "Invalid CI_MAP_IMPL value: #{ENV['CI_MAP_IMPL']}"
end
Expand Down
2 changes: 1 addition & 1 deletion ios/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ We have support for mapbox 11.
Add the following to your Podfile:

```ruby
$RNMapboxMapsVersion = '= 11.4.0'
$RNMapboxMapsVersion = '= 11.8.0'
```

If using expo managed workflow, set the "RNMapboxMapsVersion" variable. See the [expo guide](/plugin/install.md)
Expand Down
4 changes: 2 additions & 2 deletions plugin/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ After installing this package, add the [config plugin](https://docs.expo.io/guid
[
"@rnmapbox/maps",
{
"RNMapboxMapsVersion": "11.4.0"
"RNMapboxMapsVersion": "11.8.0"
}
]
]
Expand Down Expand Up @@ -93,7 +93,7 @@ To use V11 just set the version to a 11 version, see [the ios guide](/ios/instal
[
"@rnmapbox/maps",
{
"RNMapboxMapsVersion": "11.4.0",
"RNMapboxMapsVersion": "11.8.0",
"RNMapboxMapsDownloadToken": "sk.ey...qg",
}
]
Expand Down
2 changes: 1 addition & 1 deletion rnmapbox-maps.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ else
end

if $RNMapboxMapsUseV11 != nil
warn "WARNING: $RNMapboxMapsUseV11 is deprecated just set $RNMapboxMapsVersion to '= 11.4.0"
warn "WARNING: $RNMapboxMapsUseV11 is deprecated just set $RNMapboxMapsVersion to '= 11.8.0"
end

if $MapboxImplVersion =~ /(~>|>=|=|>)?\S*11\./
Expand Down
Loading