From 555837905ca2c26b5b7d65ed5c6de26731e23f62 Mon Sep 17 00:00:00 2001 From: Joey Boerwinkel Date: Tue, 11 Apr 2023 15:07:24 +0200 Subject: [PATCH] chore: update version to 1.1.0 --- CHANGELOG.md | 8 ++++++-- example/pubspec.lock | 4 ++-- lib/src/google_map.dart | 1 - pubspec.yaml | 2 +- 4 files changed, 9 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 41cc7d8..524d37d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ -## 0.0.1 +1.1.0 + * Feature: Optional parameter `retrieveDirections` to disable directions api calls + * Fix: Issue with json conversion google map theme. -* TODO: Describe initial release. +1.0.2 + + * Minor fixes \ No newline at end of file diff --git a/example/pubspec.lock b/example/pubspec.lock index 0b9ee54..fccdc4e 100644 --- a/example/pubspec.lock +++ b/example/pubspec.lock @@ -158,7 +158,7 @@ packages: path: ".." relative: true source: path - version: "1.0.1" + version: "1.1.0" html: dependency: transitive description: @@ -333,5 +333,5 @@ packages: source: hosted version: "2.1.4" sdks: - dart: ">=2.18.0 <4.0.0" + dart: ">=2.18.0 <3.0.0" flutter: ">=3.0.0" diff --git a/lib/src/google_map.dart b/lib/src/google_map.dart index 1f471e9..5f13483 100644 --- a/lib/src/google_map.dart +++ b/lib/src/google_map.dart @@ -172,7 +172,6 @@ class _GoogleTrackTraceMapState extends State { if (widget.mapStylingTheme != null) { ctr.setMapStyle(widget.mapStylingTheme!.getJson()).onError( (error, stackTrace) async { - print(error); throw GoogleMapsException(error.toString()); }, ); diff --git a/pubspec.yaml b/pubspec.yaml index 6a79fae..95e94f7 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: google_track_trace description: An Iconica Flutter pluginin for Track & Trace Package -version: 1.0.2 +version: 1.1.0 environment: sdk: ">=2.14.0 <3.0.0"