From 6e8cc20b0b1bb9b03cbf31e3416e114f1ef94dca Mon Sep 17 00:00:00 2001 From: Luka S Date: Tue, 24 Oct 2023 09:28:59 +0100 Subject: [PATCH] chore: v6.0.1 Release Preparation (#1702) --- CHANGELOG.md | 15 +++++++++++++++ example/android/app/build.gradle | 2 +- example/pubspec.yaml | 2 +- lib/src/layer/tile_layer/tile_layer.dart | 4 ++-- pubspec.yaml | 2 +- windowsApplicationInstallerSetup.iss | 2 +- 6 files changed, 21 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b7c78052c..ad47e49c7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## [6.0.1] - 2023/10/XX + +Contains the following user-affecting bug fixes: + +- Fixed `CircleMarker`'s incorrect appearance and size - [#1692](https://github.com/fleaflet/flutter_map/pull/1692) for [#1688](https://github.com/fleaflet/flutter_map/issues/1688) +- Fixed `LateInitializationError` when specifying `initialCameraFit` - [#1691](https://github.com/fleaflet/flutter_map/pull/1691) for [#1684](https://github.com/fleaflet/flutter_map/issues/1684) +- Fixed incorrect behaviour issues caused by the adjusted default `MapOptions.cameraConstraint` - [#1700](https://github.com/fleaflet/flutter_map/pull/1700) for [#1682](https://github.com/fleaflet/flutter_map/issues/1682) & [#1699](https://github.com/fleaflet/flutter_map/issues/1699) +- Fixed bug where not providing either `wmsOptions` nor `urlTemplate` caused a null exception in `getTileUrl` and when `retinaMode` is `true` - [#1701](https://github.com/fleaflet/flutter_map/pull/1701) +- Re-exported 'positioned_tap_detector_2' library (with `TapPosition`) - [#1694](https://github.com/fleaflet/flutter_map/pull/1694) for [#1693](https://github.com/fleaflet/flutter_map/issues/1693) + +Many thanks to these contributors (in no particular order): + +- @Alexays +- ... and all the maintainers + ## [6.0.0] - 2023/10/09 **"Photography"** diff --git a/example/android/app/build.gradle b/example/android/app/build.gradle index d869da0ae..a654ab681 100644 --- a/example/android/app/build.gradle +++ b/example/android/app/build.gradle @@ -18,7 +18,7 @@ if (flutterVersionCode == null) { def flutterVersionName = localProperties.getProperty('flutter.versionName') if (flutterVersionName == null) { - flutterVersionName = '6.0.0' + flutterVersionName = '6.0.1' } apply plugin: 'com.android.application' diff --git a/example/pubspec.yaml b/example/pubspec.yaml index df1db6176..efda6e8c0 100644 --- a/example/pubspec.yaml +++ b/example/pubspec.yaml @@ -1,7 +1,7 @@ name: flutter_map_example description: Example application for 'flutter_map' package publish_to: "none" -version: 6.0.0 +version: 6.0.1 environment: sdk: ">=3.0.0 <4.0.0" diff --git a/lib/src/layer/tile_layer/tile_layer.dart b/lib/src/layer/tile_layer/tile_layer.dart index f169c1503..3fbe08627 100644 --- a/lib/src/layer/tile_layer/tile_layer.dart +++ b/lib/src/layer/tile_layer/tile_layer.dart @@ -152,11 +152,11 @@ class TileLayer extends StatefulWidget { /// /// `userAgentPackageName` is a [TileLayer] parameter, which should be passed /// the application's correct package name, such as 'com.example.app'. See - /// https://docs.fleaflet.dev/v/v6-1/layers/tile-layer#useragentpackagename for + /// https://docs.fleaflet.dev/layers/tile-layer#useragentpackagename for /// more information. /// /// For information about other prebuilt tile providers, see - /// https://docs.fleaflet.dev/v/v6-1/layers/tile-layer/tile-providers.W + /// https://docs.fleaflet.dev/layers/tile-layer/tile-providers. late final TileProvider tileProvider; /// When panning the map, keep this many rows and columns of tiles before diff --git a/pubspec.yaml b/pubspec.yaml index fe3776a33..901baf203 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: flutter_map description: A versatile mapping package for Flutter, that's simple and easy to learn, yet completely customizable and configurable -version: 6.0.0 +version: 6.0.1 repository: https://github.com/fleaflet/flutter_map issue_tracker: https://github.com/fleaflet/flutter_map/issues diff --git a/windowsApplicationInstallerSetup.iss b/windowsApplicationInstallerSetup.iss index 1b1f1adbf..e61c6d378 100644 --- a/windowsApplicationInstallerSetup.iss +++ b/windowsApplicationInstallerSetup.iss @@ -2,7 +2,7 @@ ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES! #define MyAppName "flutter_map Demo" -#define MyAppVersion "for 6.0.0" +#define MyAppVersion "for 6.0.1" #define MyAppPublisher "fleaflet" #define MyAppURL "https://github.com/fleaflet/flutter_map" #define MyAppSupportURL "https://github.com/fleaflet/flutter_map/issues"