Skip to content

Commit 33f6915

Browse files
authored
Bump version to 1.0.0-beta.3 (#393)
1 parent 31db502 commit 33f6915

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
### main
1+
### 1.0.0-beta.3
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).
55
* [Android] Use hybrid composition(HC) as the default platform view hosting mode on Android.
6-
* [Android] Add experimental `androidHostingMode` contructor parameter to `MapWidget`. Use this to change the way platform MapView is being hosted by Flutter on Android. This changes the way map view is composited with Flutter UI, read more on this in [Android Platform Views](https://github.com/flutter/flutter/wiki/Android-Platform-Views) guide from the Flutter team.
6+
* [Android] Add experimental `androidHostingMode` constructor parameter to `MapWidget`. Use this to change the way platform MapView is being hosted by Flutter on Android. This changes the way map view is composited with Flutter UI, read more on this in [Android Platform Views](https://github.com/flutter/flutter/wiki/Android-Platform-Views) guide from the Flutter team.
77
* [iOS] `MapboxMap`: `isGestureInProgress()`, `isUserAnimationInProgress()`, `setConstrainMode()`, `setNorthOrientation()`, `setViewportMode()` and `reduceMemoryUse()` are now available on iOS.
88
* Bump platform Maps SDK dependencies to 11.2.0-beta.1.
99

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Mapbox Maps SDK Flutter Plugin
22

3-
The Mapbox Maps SDK Flutter Plugin is an officially developed solution from Mapbox that enables use of our latest Maps SDK product (v11.0.0). It is currently in beta, but can be used in production. The plugin allows developers to embed highly customized maps using a Flutter widget on Android and iOS.
3+
The Mapbox Maps SDK Flutter Plugin is an officially developed solution from Mapbox that enables use of our latest Maps SDK product (v11.2.0-beta.1). It is currently in beta, but can be used in production. The plugin allows developers to embed highly customized maps using a Flutter widget on Android and iOS.
44

55
Web and desktop are not supported.
66

@@ -110,7 +110,7 @@ To use the Maps Flutter Plugin add the git dependency to the pubspec.yaml:
110110

111111
```
112112
dependencies:
113-
mapbox_maps_flutter: ^1.0.0-beta.2
113+
mapbox_maps_flutter: ^1.0.0-beta.3
114114
```
115115

116116
### Configure permissions

example/ios/Podfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ PODS:
22
- Flutter (1.0.0)
33
- integration_test (0.0.1):
44
- Flutter
5-
- mapbox_maps_flutter (1.0.0-beta.2):
5+
- mapbox_maps_flutter (1.0.0-beta.3):
66
- Flutter
77
- MapboxMaps (~> 11.2.0-beta.1)
88
- MapboxCommon (24.2.0-beta.1)
@@ -42,7 +42,7 @@ EXTERNAL SOURCES:
4242
SPEC CHECKSUMS:
4343
Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7
4444
integration_test: 13825b8a9334a850581300559b8839134b124670
45-
mapbox_maps_flutter: 199bfbc13f4474f684eec1c94e35a1f95042b7a0
45+
mapbox_maps_flutter: 675b1cadb7a0bb12a843b1c7b601f7121b981b1d
4646
MapboxCommon: 40dff941c35dacd08e0fd57d32befaff1f48fc1f
4747
MapboxCoreMaps: c45defe5147347ed9a8e68e097d0a33cc82b4fa2
4848
MapboxMaps: 9293dc1a0233f7d764a993fa9ab405db59bdc5af

example/pubspec.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ packages:
168168
path: ".."
169169
relative: true
170170
source: path
171-
version: "1.0.0-beta.2"
171+
version: "1.0.0-beta.3"
172172
matcher:
173173
dependency: transitive
174174
description:

ios/mapbox_maps_flutter.podspec

Lines changed: 1 addition & 1 deletion
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 = '1.0.0-beta.2'
7+
s.version = '1.0.0-beta.3'
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.'

lib/src/map_widget.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ class _MapWidgetState extends State<MapWidget> {
217217
'textureView': widget.textureView,
218218
'styleUri': widget.styleUri,
219219
'eventTypes': widget._eventTypes.map((e) => e.index).toList(),
220-
'mapboxPluginVersion': '1.0.0-beta.2'
220+
'mapboxPluginVersion': '1.0.0-beta.3'
221221
};
222222

223223
return _mapboxMapsPlatform.buildView(widget.androidHostingMode,

pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: mapbox_maps_flutter
2-
description: A Flutter plugin for integrating Mapbox Maps SDK v10 in Android/iOS application.
3-
version: 1.0.0-beta.2
2+
description: A Flutter plugin for integrating Mapbox Maps SDK v11 in Android/iOS application.
3+
version: 1.0.0-beta.3
44
homepage: https://github.com/mapbox/mapbox-maps-flutter
55

66
environment:

0 commit comments

Comments
 (0)