Skip to content

Commit

Permalink
fix: fixed build failure
Browse files Browse the repository at this point in the history
Bumped version + updated CHANGELOG.md
  • Loading branch information
LuisThein committed Oct 26, 2020
1 parent 9196c9a commit b028151
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.1.9+4

* Fixed build failure

## 0.1.9+3

* InfoWindow anchor is now configurable
Expand Down
4 changes: 2 additions & 2 deletions example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ packages:
name: apple_maps_flutter
url: "https://pub.dartlang.org"
source: hosted
version: "0.1.2+4"
version: "0.1.2+5"
async:
dependency: transitive
description:
Expand Down Expand Up @@ -122,7 +122,7 @@ packages:
path: ".."
relative: true
source: path
version: "0.1.9+3"
version: "0.1.9+4"
plugin_platform_interface:
dependency: transitive
description:
Expand Down
2 changes: 2 additions & 0 deletions lib/src/marker.dart
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,7 @@ class Marker {
appleMaps.Annotation(
annotationId: marker.markerId.appleMapsAnnoationId,
alpha: marker.alpha,
anchor: Offset(0.5, 1.0),
draggable: marker.draggable,
infoWindow: marker.infoWindow.appleMapsInfoWindow,
onTap: marker.onTap,
Expand All @@ -199,6 +200,7 @@ class Marker {
googleMaps.Marker(
markerId: marker.markerId.googleMapsMarkerId,
alpha: marker.alpha,
anchor: Offset(0.5, 1.0),
draggable: marker.draggable,
infoWindow: marker.infoWindow.googleMapsInfoWindow,
onTap: marker.onTap,
Expand Down
2 changes: 1 addition & 1 deletion pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ packages:
name: apple_maps_flutter
url: "https://pub.dartlang.org"
source: hosted
version: "0.1.2+4"
version: "0.1.2+5"
async:
dependency: transitive
description:
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: platform_maps_flutter
description: A Flutter package that combines google_maps and apple_maps to provide a crossplatform native map implementation.
version: 0.1.9+3
version: 0.1.9+4
homepage: https://github.com/LuisThein
repository: https://github.com/LuisThein/platform_maps_flutter
issue_tracker: https://github.com/LuisThein/platform_maps_flutter/issues
Expand All @@ -14,7 +14,7 @@ dependencies:

google_maps_flutter: ^0.5.28+1

apple_maps_flutter: ^0.1.2+4
apple_maps_flutter: ^0.1.2+5

dev_dependencies:
flutter_test:
Expand Down

0 comments on commit b028151

Please sign in to comment.