Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
version bump
  • Loading branch information
stuartmorgan-g committed Feb 23, 2024
commit 2e8a190de3df18e6cf2a19a8651aa9a333193b67
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
## NEXT
## 2.6.0

* Adds `style` to the GoogleMap widget constructor. This allows setting the map
style during creation, avoiding the possibility of the default style being
displayed briefly.
* Deprecates `GoogleMapController.setMapStyle` in favor of setting the style via
the new widget `style` parameter.
* Updates minimum supported SDK version to Flutter 3.13/Dart 3.1.

## 2.5.3
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: google_maps_flutter
description: A Flutter plugin for integrating Google Maps in iOS and Android applications.
repository: https://github.com/flutter/packages/tree/main/packages/google_maps_flutter/google_maps_flutter
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+maps%22
version: 2.5.3
version: 2.6.0

environment:
sdk: ^3.1.0
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
## NEXT
## 2.7.0

* Adds support for `MapConfiguration.style`.
* Adds support for `getStyleError`.
* Updates minimum supported SDK version to Flutter 3.13/Dart 3.1.
* Updates compileSdk version to 34.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: google_maps_flutter_android
description: Android implementation of the google_maps_flutter plugin.
repository: https://github.com/flutter/packages/tree/main/packages/google_maps_flutter/google_maps_flutter_android
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+maps%22
version: 2.6.2
version: 2.7.0

environment:
sdk: ^3.1.0
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 2.5.0

* Adds support for `MapConfiguration.style`.
* Adds support for `getStyleError`.

## 2.4.2

* Fixes a bug in "takeSnapshot" function that incorrectly returns a blank image on iOS 17.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: google_maps_flutter_ios
description: iOS implementation of the google_maps_flutter plugin.
repository: https://github.com/flutter/packages/tree/main/packages/google_maps_flutter/google_maps_flutter_ios
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+maps%22
version: 2.4.2
version: 2.5.0

environment:
sdk: ^3.2.3
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
## NEXT
## 2.5.0

* Adds `style` to the `MapConfiguration` to allow setting style as part of
map creation.
* Adds `getStyleError` to the platform interface, to allow asynchronous access
to style errors that occur during initialization.
* Updates minimum supported SDK version to Flutter 3.13/Dart 3.1.

## 2.4.3
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ repository: https://github.com/flutter/packages/tree/main/packages/google_maps_f
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+maps%22
# NOTE: We strongly prefer non-breaking changes, even at the expense of a
# less-clean API. See https://flutter.dev/go/platform-interface-breaking-changes
version: 2.4.3
version: 2.5.0

environment:
sdk: ^3.1.0
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
## NEXT
## 0.5.5

* Adds support for `MapConfiguration.style`.
* Adds support for `getStyleError`.
* Updates minimum supported SDK version to Flutter 3.13/Dart 3.1.

## 0.5.4+3
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: google_maps_flutter_web
description: Web platform implementation of google_maps_flutter
repository: https://github.com/flutter/packages/tree/main/packages/google_maps_flutter/google_maps_flutter_web
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+maps%22
version: 0.5.4+3
version: 0.5.5

environment:
sdk: ">=3.1.0 <4.0.0"
Expand Down