Skip to content

Commit 49904bc

Browse files
authored
Maps SDK 11.2.0-beta.1 (#389)
* Update Maps SDK version to v11.2.0-beta.1 * Add version number to examples app pubspec to silence a warning * Add changelog entry
1 parent bbd33e2 commit 49904bc

File tree

5 files changed

+22
-21
lines changed

5 files changed

+22
-21
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
* Add an example representing a traffic route with color based on traffic volumes using LineLayer and Expression.
44
* [Android] Fix MapOptions incorrect index access at map creation, leading to map not being created(blank view).
5+
* Bump platform Maps SDK dependencies to 11.2.0-beta.1.
56

67
### 1.0.0-beta.2
78

android/build.gradle

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ group 'com.mapbox.maps.mapbox_maps'
22
version '1.0-SNAPSHOT'
33

44
buildscript {
5-
ext.kotlin_version = '1.7.20'
5+
ext.kotlin_version = '1.8.22'
66
repositories {
77
google()
88
mavenCentral()
@@ -63,11 +63,10 @@ if (file("$rootDir/gradle/ktlint.gradle").exists() && file("$rootDir/gradle/lint
6363
}
6464

6565
dependencies {
66-
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
67-
implementation ("com.mapbox.maps:android:11.1.0") {
66+
implementation ("com.mapbox.maps:android:11.2.0-beta.1") {
6867
exclude group: 'com.mapbox.plugin', module: 'maps-lifecycle'
6968
}
7069

71-
implementation "androidx.annotation:annotation:1.1.0"
70+
implementation "androidx.annotation:annotation:1.7.1"
7271
implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.3.0"
7372
}

example/ios/Podfile.lock

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,17 @@ PODS:
44
- Flutter
55
- mapbox_maps_flutter (1.0.0-beta.2):
66
- Flutter
7-
- MapboxMaps (~> 11.1.0)
8-
- MapboxCommon (24.1.0)
9-
- MapboxCoreMaps (11.1.0):
10-
- MapboxCommon (~> 24.1)
11-
- MapboxMaps (11.1.0):
12-
- MapboxCommon (= 24.1.0)
13-
- MapboxCoreMaps (= 11.1.0)
14-
- Turf (= 2.7.0)
7+
- MapboxMaps (~> 11.2.0-beta.1)
8+
- MapboxCommon (24.2.0-beta.1)
9+
- MapboxCoreMaps (11.2.0-beta.1):
10+
- MapboxCommon (~> 24.2.0-beta)
11+
- MapboxMaps (11.2.0-beta.1):
12+
- MapboxCommon (= 24.2.0-beta.1)
13+
- MapboxCoreMaps (= 11.2.0-beta.1)
14+
- Turf (= 2.8.0)
1515
- permission_handler_apple (9.1.1):
1616
- Flutter
17-
- Turf (2.7.0)
17+
- Turf (2.8.0)
1818

1919
DEPENDENCIES:
2020
- Flutter (from `Flutter`)
@@ -42,13 +42,13 @@ EXTERNAL SOURCES:
4242
SPEC CHECKSUMS:
4343
Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7
4444
integration_test: 13825b8a9334a850581300559b8839134b124670
45-
mapbox_maps_flutter: ef1f184e8db0b62d8f59321ca2d26c96c794d4b4
46-
MapboxCommon: b84c1cf2d76899e598e2495639e52ebbe2088eac
47-
MapboxCoreMaps: eebe37ab62f99bf09436099850646c6b6450615d
48-
MapboxMaps: a1ce80599606b43d136814cdb8a869acb776e4a9
45+
mapbox_maps_flutter: 199bfbc13f4474f684eec1c94e35a1f95042b7a0
46+
MapboxCommon: 40dff941c35dacd08e0fd57d32befaff1f48fc1f
47+
MapboxCoreMaps: c45defe5147347ed9a8e68e097d0a33cc82b4fa2
48+
MapboxMaps: 9293dc1a0233f7d764a993fa9ab405db59bdc5af
4949
permission_handler_apple: e76247795d700c14ea09e3a2d8855d41ee80a2e6
50-
Turf: 13d1a92d969ca0311bbc26e8356cca178ce95da2
50+
Turf: aa2ede4298009639d10db36aba1a7ebaad072a5e
5151

5252
PODFILE CHECKSUM: e9395e37b54f3250ebce302f8de7800b2ba2b828
5353

54-
COCOAPODS: 1.14.3
54+
COCOAPODS: 1.15.0

example/pubspec.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
name: mapbox_maps_example
22
description: Demonstrates how to use the mapbox_maps_flutter plugin.
3+
version: "1.0.0-beta.1"
34

45
# The following line prevents the package from being accidentally published to
56
# pub.dev using `pub publish`. This is preferred for private packages.

ios/mapbox_maps_flutter.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ Pod::Spec.new do |s|
1616
s.source_files = 'Classes/**/*'
1717
s.dependency 'Flutter'
1818
s.platform = :ios, '12.0'
19-
s.dependency 'MapboxMaps', '~> 11.1.0'
19+
s.dependency 'MapboxMaps', '~> 11.2.0-beta.1'
2020

2121
# Flutter.framework does not contain a i386 slice.
2222
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386' }
23-
s.swift_version = '5.7'
23+
s.swift_version = '5.8'
2424
end

0 commit comments

Comments
 (0)