Skip to content

Commit d703171

Browse files
authored
chore: upgrade to 10.16.4 and 11.1.0 of mapbox libs (#3338)
1 parent 752afff commit d703171

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
def defaultMapboxMapsImpl = "mapbox"
2-
def defaultMapboxMapsVersion = "10.16.3"
2+
def defaultMapboxMapsVersion = "10.16.4"
33

44
def safeExtGet(prop, fallback) {
55
rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback

android/install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Set `RNMapboxMapsVersion` in `android/build.gradle > buildscript > ext` section
4646
```groovy
4747
buildscript {
4848
ext {
49-
RNMapboxMapsVersion = '11.0.0'
49+
RNMapboxMapsVersion = '11.1.0'
5050
}
5151
}
5252
```

example/android/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ buildscript {
88
RNMapboxMapsImpl = "mapbox"
99
kotlinVersion = '1.6.21'
1010
} else if (System.getenv('CI_MAP_IMPL').equals('mapbox11')) {
11-
RNMapboxMapsVersion = '11.0.0'
11+
RNMapboxMapsVersion = '11.1.0'
1212
RNMapboxMapsImpl = "mapbox"
1313
} else if (project.hasProperty('RNMBX11') && project.getProperty('RNMBX11').toBoolean()) {
14-
RNMapboxMapsVersion = '11.0.0'
14+
RNMapboxMapsVersion = '11.1.0'
1515
}
1616

1717
// Mapbox deps

example/ios/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ prepare_react_native_project!
1010

1111
$RNMapboxMapsImpl = 'mapbox'
1212
if ENV['RNMBX11']
13-
$RNMapboxMapsVersion = '= 11.0.0'
13+
$RNMapboxMapsVersion = '= 11.1.0'
1414
end
1515

1616
if ENV['CI_MAP_IMPL']

ios/install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ We have support for mapbox 11.
6969
Add the following to your Podfile:
7070

7171
```ruby
72-
$RNMapboxMapsVersion = '= 11.0.0'
72+
$RNMapboxMapsVersion = '= 11.1.0'
7373
```
7474

7575
If using expo managed workflow, set the "RNMapboxMapsVersion" variable. See the [expo guide](/plugin/install.md)

plugin/install.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ After installing this package, add the [config plugin](https://docs.expo.io/guid
2020
[
2121
"@rnmapbox/maps",
2222
{
23-
"RNMapboxMapsVersion": "11.0.0"
23+
"RNMapboxMapsVersion": "11.1.0"
2424
}
2525
]
2626
]
@@ -93,7 +93,7 @@ To use V11 just set the version to a 11 version, see [the ios guide](/ios/instal
9393
[
9494
"@rnmapbox/maps",
9595
{
96-
"RNMapboxMapsVersion": "11.0.0",
96+
"RNMapboxMapsVersion": "11.1.0",
9797
"RNMapboxMapsDownloadToken": "sk.ey...qg",
9898
}
9999
]

rnmapbox-maps.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ require 'json'
2020
package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
2121

2222
## Warning: these lines are scanned by autogenerate.js
23-
rnMapboxMapsDefaultMapboxVersion = '~> 10.16.3'
23+
rnMapboxMapsDefaultMapboxVersion = '~> 10.16.4'
2424

2525
rnMapboxMapsDefaultImpl = 'mapbox'
2626

0 commit comments

Comments
 (0)