Skip to content

Commit

Permalink
Bump version to 1.0.0-beta.3 (#393)
Browse files Browse the repository at this point in the history
  • Loading branch information
evil159 authored Feb 2, 2024
1 parent 31db502 commit 33f6915
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
### main
### 1.0.0-beta.3

* Add an example representing a traffic route with color based on traffic volumes using LineLayer and Expression.
* [Android] Fix MapOptions incorrect index access at map creation, leading to map not being created(blank view).
* [Android] Use hybrid composition(HC) as the default platform view hosting mode on Android.
* [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.
* [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.
* [iOS] `MapboxMap`: `isGestureInProgress()`, `isUserAnimationInProgress()`, `setConstrainMode()`, `setNorthOrientation()`, `setViewportMode()` and `reduceMemoryUse()` are now available on iOS.
* Bump platform Maps SDK dependencies to 11.2.0-beta.1.

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

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

Web and desktop are not supported.

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

```
dependencies:
mapbox_maps_flutter: ^1.0.0-beta.2
mapbox_maps_flutter: ^1.0.0-beta.3
```

### Configure permissions
Expand Down
4 changes: 2 additions & 2 deletions example/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ PODS:
- Flutter (1.0.0)
- integration_test (0.0.1):
- Flutter
- mapbox_maps_flutter (1.0.0-beta.2):
- mapbox_maps_flutter (1.0.0-beta.3):
- Flutter
- MapboxMaps (~> 11.2.0-beta.1)
- MapboxCommon (24.2.0-beta.1)
Expand Down Expand Up @@ -42,7 +42,7 @@ EXTERNAL SOURCES:
SPEC CHECKSUMS:
Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7
integration_test: 13825b8a9334a850581300559b8839134b124670
mapbox_maps_flutter: 199bfbc13f4474f684eec1c94e35a1f95042b7a0
mapbox_maps_flutter: 675b1cadb7a0bb12a843b1c7b601f7121b981b1d
MapboxCommon: 40dff941c35dacd08e0fd57d32befaff1f48fc1f
MapboxCoreMaps: c45defe5147347ed9a8e68e097d0a33cc82b4fa2
MapboxMaps: 9293dc1a0233f7d764a993fa9ab405db59bdc5af
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ packages:
path: ".."
relative: true
source: path
version: "1.0.0-beta.2"
version: "1.0.0-beta.3"
matcher:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion 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 = '1.0.0-beta.2'
s.version = '1.0.0-beta.3'

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 Down
2 changes: 1 addition & 1 deletion lib/src/map_widget.dart
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ class _MapWidgetState extends State<MapWidget> {
'textureView': widget.textureView,
'styleUri': widget.styleUri,
'eventTypes': widget._eventTypes.map((e) => e.index).toList(),
'mapboxPluginVersion': '1.0.0-beta.2'
'mapboxPluginVersion': '1.0.0-beta.3'
};

return _mapboxMapsPlatform.buildView(widget.androidHostingMode,
Expand Down
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: mapbox_maps_flutter
description: A Flutter plugin for integrating Mapbox Maps SDK v10 in Android/iOS application.
version: 1.0.0-beta.2
description: A Flutter plugin for integrating Mapbox Maps SDK v11 in Android/iOS application.
version: 1.0.0-beta.3
homepage: https://github.com/mapbox/mapbox-maps-flutter

environment:
Expand Down

0 comments on commit 33f6915

Please sign in to comment.