diff --git a/CHANGELOG.md b/CHANGELOG.md index b48592cd..67808e81 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,9 @@ -### 2.2.0-rc.1 +### 2.2.0 +* Bump Maps SDK to 11.6.0 +* Update Pigeon to `21.1.0` * Expose `MapboxStyles.STANDARD_SATELLITE` style. * `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`. -* Bump Maps SDK to 11.6.0-rc.1 - -### 2.2.0-beta.1 - * Support local assets for 3D puck and `ModelLayer`. To use a local assets, please specify it with `asset://` scheme in the uri. * Fix map view crashing upon host activity destruction when using a cached Flutter engine. * Fix a rare crash happening when map widget is being disposed. diff --git a/README.md b/README.md index e56f22d9..e57e97a8 100644 --- a/README.md +++ b/README.md @@ -111,7 +111,7 @@ To use the Maps Flutter SDK add the git dependency to the pubspec.yaml: ``` dependencies: - mapbox_maps_flutter: ^2.2.0-beta.1 + mapbox_maps_flutter: ^2.2.0 ``` ### Configure permissions diff --git a/android/build.gradle b/android/build.gradle index b646dcfe..3e112382 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -78,7 +78,7 @@ if (file("$rootDir/gradle/ktlint.gradle").exists() && file("$rootDir/gradle/lint } dependencies { - implementation "com.mapbox.maps:android:11.6.0-rc.1" + implementation "com.mapbox.maps:android:11.6.0" implementation "androidx.annotation:annotation:1.7.1" implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.3.0" diff --git a/example/ios/Podfile.lock b/example/ios/Podfile.lock index ecfce391..7186d74b 100644 --- a/example/ios/Podfile.lock +++ b/example/ios/Podfile.lock @@ -2,16 +2,16 @@ PODS: - Flutter (1.0.0) - integration_test (0.0.1): - Flutter - - mapbox_maps_flutter (2.2.0-rc.1): + - mapbox_maps_flutter (2.2.0): - Flutter - - MapboxMaps (~> 11.6.0-rc.1) + - MapboxMaps (~> 11.6.0) - Turf (= 2.8.0) - - MapboxCommon (24.6.0-rc.1) - - MapboxCoreMaps (11.6.0-rc.1): - - MapboxCommon (~> 24.6.0-rc) - - MapboxMaps (11.6.0-rc.1): - - MapboxCommon (= 24.6.0-rc.1) - - MapboxCoreMaps (= 11.6.0-rc.1) + - MapboxCommon (24.6.0) + - MapboxCoreMaps (11.6.0): + - MapboxCommon (~> 24.6) + - MapboxMaps (11.6.0): + - MapboxCommon (= 24.6.0) + - MapboxCoreMaps (= 11.6.0) - Turf (= 2.8.0) - path_provider_foundation (0.0.1): - Flutter @@ -48,11 +48,11 @@ EXTERNAL SOURCES: SPEC CHECKSUMS: Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7 - integration_test: ce0a3ffa1de96d1a89ca0ac26fca7ea18a749ef4 - mapbox_maps_flutter: 4ad19682f43ffed50be9c1eb2364107e21725f1f - MapboxCommon: 595dd030df6b2c88e73dd53cef95acc3f31cfa7e - MapboxCoreMaps: f33e09b177988af18168b8717f5d79937c85908f - MapboxMaps: d9432ed7d8385a5e04ccc069fbc830d661bbf96d + integration_test: 13825b8a9334a850581300559b8839134b124670 + mapbox_maps_flutter: d853261834ff2a87f716e5c4beb150bca3f4cb65 + MapboxCommon: 6008e74b1312a093dec291497a036fc8b47f344f + MapboxCoreMaps: bd097795c5ae4f002181769e7151474a33ce878a + MapboxMaps: fc1b2ab98563d0157ba01f6e4a2fd8a8af556d92 path_provider_foundation: 2b6b4c569c0fb62ec74538f866245ac84301af46 permission_handler_apple: e76247795d700c14ea09e3a2d8855d41ee80a2e6 Turf: aa2ede4298009639d10db36aba1a7ebaad072a5e diff --git a/ios/mapbox_maps_flutter.podspec b/ios/mapbox_maps_flutter.podspec index b48b8eba..4d20ba4a 100644 --- a/ios/mapbox_maps_flutter.podspec +++ b/ios/mapbox_maps_flutter.podspec @@ -4,7 +4,7 @@ # Pod::Spec.new do |s| s.name = 'mapbox_maps_flutter' - s.version = '2.2.0-rc.1' + s.version = '2.2.0' s.summary = 'Mapbox Maps SDK Flutter Plugin.' 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| s.dependency 'Flutter' s.platform = :ios, '12.0' - s.dependency 'MapboxMaps', '~> 11.6.0-rc.1' + s.dependency 'MapboxMaps', '~> 11.6.0' s.dependency 'Turf', '2.8.0' # Flutter.framework does not contain a i386 slice. diff --git a/lib/src/map_widget.dart b/lib/src/map_widget.dart index bc2bcd5f..b71acdf6 100644 --- a/lib/src/map_widget.dart +++ b/lib/src/map_widget.dart @@ -185,7 +185,7 @@ class _MapWidgetState extends State { 'textureView': widget.textureView, 'styleUri': widget.styleUri, 'channelSuffix': _suffix, - 'mapboxPluginVersion': '2.2.0-rc.1', + 'mapboxPluginVersion': '2.2.0', 'eventTypes': _events.eventTypes.map((e) => e.index).toList(), }; diff --git a/pubspec.yaml b/pubspec.yaml index 4519e3c1..dbc3b802 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: mapbox_maps_flutter description: Interactive, thoroughly customizable maps powered by Mapbox Maps mobile SDKs. -version: 2.2.0-rc.1 +version: 2.2.0 homepage: https://github.com/mapbox/mapbox-maps-flutter environment: