Skip to content

Commit 6e8cc20

Browse files
authored
chore: v6.0.1 Release Preparation (#1702)
1 parent 26fae58 commit 6e8cc20

File tree

6 files changed

+21
-6
lines changed

6 files changed

+21
-6
lines changed

CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Changelog
22

3+
## [6.0.1] - 2023/10/XX
4+
5+
Contains the following user-affecting bug fixes:
6+
7+
- 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)
8+
- Fixed `LateInitializationError` when specifying `initialCameraFit` - [#1691](https://github.com/fleaflet/flutter_map/pull/1691) for [#1684](https://github.com/fleaflet/flutter_map/issues/1684)
9+
- 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)
10+
- 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)
11+
- 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)
12+
13+
Many thanks to these contributors (in no particular order):
14+
15+
- @Alexays
16+
- ... and all the maintainers
17+
318
## [6.0.0] - 2023/10/09
419

520
**"Photography"**

example/android/app/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ if (flutterVersionCode == null) {
1818

1919
def flutterVersionName = localProperties.getProperty('flutter.versionName')
2020
if (flutterVersionName == null) {
21-
flutterVersionName = '6.0.0'
21+
flutterVersionName = '6.0.1'
2222
}
2323

2424
apply plugin: 'com.android.application'

example/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: flutter_map_example
22
description: Example application for 'flutter_map' package
33
publish_to: "none"
4-
version: 6.0.0
4+
version: 6.0.1
55

66
environment:
77
sdk: ">=3.0.0 <4.0.0"

lib/src/layer/tile_layer/tile_layer.dart

+2-2
Original file line numberDiff line numberDiff line change
@@ -152,11 +152,11 @@ class TileLayer extends StatefulWidget {
152152
///
153153
/// `userAgentPackageName` is a [TileLayer] parameter, which should be passed
154154
/// the application's correct package name, such as 'com.example.app'. See
155-
/// https://docs.fleaflet.dev/v/v6-1/layers/tile-layer#useragentpackagename for
155+
/// https://docs.fleaflet.dev/layers/tile-layer#useragentpackagename for
156156
/// more information.
157157
///
158158
/// For information about other prebuilt tile providers, see
159-
/// https://docs.fleaflet.dev/v/v6-1/layers/tile-layer/tile-providers.W
159+
/// https://docs.fleaflet.dev/layers/tile-layer/tile-providers.
160160
late final TileProvider tileProvider;
161161

162162
/// When panning the map, keep this many rows and columns of tiles before

pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: flutter_map
22
description: A versatile mapping package for Flutter, that's simple and easy to learn, yet completely customizable and configurable
3-
version: 6.0.0
3+
version: 6.0.1
44

55
repository: https://github.com/fleaflet/flutter_map
66
issue_tracker: https://github.com/fleaflet/flutter_map/issues

windowsApplicationInstallerSetup.iss

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
33

44
#define MyAppName "flutter_map Demo"
5-
#define MyAppVersion "for 6.0.0"
5+
#define MyAppVersion "for 6.0.1"
66
#define MyAppPublisher "fleaflet"
77
#define MyAppURL "https://github.com/fleaflet/flutter_map"
88
#define MyAppSupportURL "https://github.com/fleaflet/flutter_map/issues"

0 commit comments

Comments
 (0)