Skip to content

Commit

Permalink
Prepare 2.2.0-rc.1 release (#637)
Browse files Browse the repository at this point in the history
  • Loading branch information
evil159 committed Aug 5, 2024
1 parent 13c35b9 commit 0bf0f22
Show file tree
Hide file tree
Showing 8 changed files with 22 additions and 21 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
### main
### 2.2.0-rc.1

* 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.
* `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`.

### 2.1.0

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Mapbox Maps SDK Flutter SDK

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.
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.

Web and desktop are not supported.

Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ if (file("$rootDir/gradle/ktlint.gradle").exists() && file("$rootDir/gradle/lint
}

dependencies {
implementation "com.mapbox.maps:android:11.6.0-beta.1"
implementation "com.mapbox.maps:android:11.6.0-rc.1"

implementation "androidx.annotation:annotation:1.7.1"
implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.3.0"
Expand Down
24 changes: 12 additions & 12 deletions example/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@ PODS:
- Flutter (1.0.0)
- integration_test (0.0.1):
- Flutter
- mapbox_maps_flutter (2.2.0-beta.1):
- mapbox_maps_flutter (2.2.0-rc.1):
- Flutter
- MapboxMaps (~> 11.6.0-beta.1)
- MapboxMaps (~> 11.6.0-rc.1)
- Turf (= 2.8.0)
- MapboxCommon (24.6.0-beta.1)
- MapboxCoreMaps (11.6.0-beta.1):
- MapboxCommon (~> 24.6.0-beta)
- MapboxMaps (11.6.0-beta.1):
- MapboxCommon (= 24.6.0-beta.1)
- MapboxCoreMaps (= 11.6.0-beta.1)
- 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)
- Turf (= 2.8.0)
- path_provider_foundation (0.0.1):
- Flutter
Expand Down Expand Up @@ -49,10 +49,10 @@ EXTERNAL SOURCES:
SPEC CHECKSUMS:
Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7
integration_test: ce0a3ffa1de96d1a89ca0ac26fca7ea18a749ef4
mapbox_maps_flutter: 92560c1fe819ca74f83016cff9046a82e08533e6
MapboxCommon: 79432665253799a69280297bd630d8d4bdba0d94
MapboxCoreMaps: 5f7cb13a79665e5907315a47aaa49f341aba3f31
MapboxMaps: 45a3753ed3fa10b5c99ea040dfc4537f28f6da57
mapbox_maps_flutter: 4ad19682f43ffed50be9c1eb2364107e21725f1f
MapboxCommon: 595dd030df6b2c88e73dd53cef95acc3f31cfa7e
MapboxCoreMaps: f33e09b177988af18168b8717f5d79937c85908f
MapboxMaps: d9432ed7d8385a5e04ccc069fbc830d661bbf96d
path_provider_foundation: 2b6b4c569c0fb62ec74538f866245ac84301af46
permission_handler_apple: e76247795d700c14ea09e3a2d8855d41ee80a2e6
Turf: aa2ede4298009639d10db36aba1a7ebaad072a5e
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ packages:
path: ".."
relative: true
source: path
version: "2.1.0"
version: "2.2.0-rc.1"
matcher:
dependency: transitive
description:
Expand Down
4 changes: 2 additions & 2 deletions ios/mapbox_maps_flutter.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
Pod::Spec.new do |s|
s.name = 'mapbox_maps_flutter'
s.version = '2.2.0-beta.1'
s.version = '2.2.0-rc.1'

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

s.dependency 'MapboxMaps', '~> 11.6.0-beta.1'
s.dependency 'MapboxMaps', '~> 11.6.0-rc.1'
s.dependency 'Turf', '2.8.0'

# Flutter.framework does not contain a i386 slice.
Expand Down
2 changes: 1 addition & 1 deletion lib/src/map_widget.dart
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ class _MapWidgetState extends State<MapWidget> {
'textureView': widget.textureView,
'styleUri': widget.styleUri,
'channelSuffix': _suffix,
'mapboxPluginVersion': '2.2.0-beta.1',
'mapboxPluginVersion': '2.2.0-rc.1',
'eventTypes': _events.eventTypes.map((e) => e.index).toList(),
};

Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: mapbox_maps_flutter
description: Interactive, thoroughly customizable maps powered by Mapbox Maps mobile SDKs.
version: 2.2.0-beta.1
version: 2.2.0-rc.1
homepage: https://github.com/mapbox/mapbox-maps-flutter

environment:
Expand Down

0 comments on commit 0bf0f22

Please sign in to comment.