Skip to content

Commit 0bf0f22

Browse files
authored
Prepare 2.2.0-rc.1 release (#637)
1 parent 13c35b9 commit 0bf0f22

File tree

8 files changed

+22
-21
lines changed

8 files changed

+22
-21
lines changed

CHANGELOG.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
1-
### main
1+
### 2.2.0-rc.1
22

33
* Expose `MapboxStyles.STANDARD_SATELLITE` style.
4+
* `MapDebugOptions` is superseded by `MapWidgetDebugOptions`, expanding existing debug options with the new `light`, `camera`, and `padding` debug options in addition to the new Android-specific options: `layers2DWireframe` and `layers3DWireframe`.
5+
* Bump Maps SDK to 11.6.0-rc.1
46

57
### 2.2.0-beta.1
68

79
* Support local assets for 3D puck and `ModelLayer`. To use a local assets, please specify it with `asset://` scheme in the uri.
810
* Fix map view crashing upon host activity destruction when using a cached Flutter engine.
911
* Fix a rare crash happening when map widget is being disposed.
10-
* `MapDebugOptions` is superseded by `MapWidgetDebugOptions`, expanding existing debug options with the new `light`, `camera`, and `padding` debug options in addition to the new Android-specific options: `layers2DWireframe` and `layers3DWireframe`.
1112

1213
### 2.1.0
1314

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Mapbox Maps SDK Flutter SDK
22

3-
The Mapbox Maps SDK Flutter SDK is an officially developed solution from Mapbox that enables use of our latest Maps SDK product (v11.6.0-beta.1). The SDK allows developers to embed highly customized maps using a Flutter widget on Android and iOS.
3+
The Mapbox Maps SDK Flutter SDK is an officially developed solution from Mapbox that enables use of our latest Maps SDK product (v11.6.0-rc.1). The SDK allows developers to embed highly customized maps using a Flutter widget on Android and iOS.
44

55
Web and desktop are not supported.
66

android/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ if (file("$rootDir/gradle/ktlint.gradle").exists() && file("$rootDir/gradle/lint
7878
}
7979

8080
dependencies {
81-
implementation "com.mapbox.maps:android:11.6.0-beta.1"
81+
implementation "com.mapbox.maps:android:11.6.0-rc.1"
8282

8383
implementation "androidx.annotation:annotation:1.7.1"
8484
implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.3.0"

example/ios/Podfile.lock

+12-12
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@ PODS:
22
- Flutter (1.0.0)
33
- integration_test (0.0.1):
44
- Flutter
5-
- mapbox_maps_flutter (2.2.0-beta.1):
5+
- mapbox_maps_flutter (2.2.0-rc.1):
66
- Flutter
7-
- MapboxMaps (~> 11.6.0-beta.1)
7+
- MapboxMaps (~> 11.6.0-rc.1)
88
- Turf (= 2.8.0)
9-
- MapboxCommon (24.6.0-beta.1)
10-
- MapboxCoreMaps (11.6.0-beta.1):
11-
- MapboxCommon (~> 24.6.0-beta)
12-
- MapboxMaps (11.6.0-beta.1):
13-
- MapboxCommon (= 24.6.0-beta.1)
14-
- MapboxCoreMaps (= 11.6.0-beta.1)
9+
- MapboxCommon (24.6.0-rc.1)
10+
- MapboxCoreMaps (11.6.0-rc.1):
11+
- MapboxCommon (~> 24.6.0-rc)
12+
- MapboxMaps (11.6.0-rc.1):
13+
- MapboxCommon (= 24.6.0-rc.1)
14+
- MapboxCoreMaps (= 11.6.0-rc.1)
1515
- Turf (= 2.8.0)
1616
- path_provider_foundation (0.0.1):
1717
- Flutter
@@ -49,10 +49,10 @@ EXTERNAL SOURCES:
4949
SPEC CHECKSUMS:
5050
Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7
5151
integration_test: ce0a3ffa1de96d1a89ca0ac26fca7ea18a749ef4
52-
mapbox_maps_flutter: 92560c1fe819ca74f83016cff9046a82e08533e6
53-
MapboxCommon: 79432665253799a69280297bd630d8d4bdba0d94
54-
MapboxCoreMaps: 5f7cb13a79665e5907315a47aaa49f341aba3f31
55-
MapboxMaps: 45a3753ed3fa10b5c99ea040dfc4537f28f6da57
52+
mapbox_maps_flutter: 4ad19682f43ffed50be9c1eb2364107e21725f1f
53+
MapboxCommon: 595dd030df6b2c88e73dd53cef95acc3f31cfa7e
54+
MapboxCoreMaps: f33e09b177988af18168b8717f5d79937c85908f
55+
MapboxMaps: d9432ed7d8385a5e04ccc069fbc830d661bbf96d
5656
path_provider_foundation: 2b6b4c569c0fb62ec74538f866245ac84301af46
5757
permission_handler_apple: e76247795d700c14ea09e3a2d8855d41ee80a2e6
5858
Turf: aa2ede4298009639d10db36aba1a7ebaad072a5e

example/pubspec.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ packages:
192192
path: ".."
193193
relative: true
194194
source: path
195-
version: "2.1.0"
195+
version: "2.2.0-rc.1"
196196
matcher:
197197
dependency: transitive
198198
description:

ios/mapbox_maps_flutter.podspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
Pod::Spec.new do |s|
66
s.name = 'mapbox_maps_flutter'
7-
s.version = '2.2.0-beta.1'
7+
s.version = '2.2.0-rc.1'
88

99
s.summary = 'Mapbox Maps SDK Flutter Plugin.'
1010
s.description = 'An officially developed solution from Mapbox that enables use of our latest Maps SDK product.'
@@ -17,7 +17,7 @@ Pod::Spec.new do |s|
1717
s.dependency 'Flutter'
1818
s.platform = :ios, '12.0'
1919

20-
s.dependency 'MapboxMaps', '~> 11.6.0-beta.1'
20+
s.dependency 'MapboxMaps', '~> 11.6.0-rc.1'
2121
s.dependency 'Turf', '2.8.0'
2222

2323
# Flutter.framework does not contain a i386 slice.

lib/src/map_widget.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ class _MapWidgetState extends State<MapWidget> {
185185
'textureView': widget.textureView,
186186
'styleUri': widget.styleUri,
187187
'channelSuffix': _suffix,
188-
'mapboxPluginVersion': '2.2.0-beta.1',
188+
'mapboxPluginVersion': '2.2.0-rc.1',
189189
'eventTypes': _events.eventTypes.map((e) => e.index).toList(),
190190
};
191191

pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: mapbox_maps_flutter
22
description: Interactive, thoroughly customizable maps powered by Mapbox Maps mobile SDKs.
3-
version: 2.2.0-beta.1
3+
version: 2.2.0-rc.1
44
homepage: https://github.com/mapbox/mapbox-maps-flutter
55

66
environment:

0 commit comments

Comments
 (0)