Skip to content

Commit

Permalink
chore: v6.0.1 Release Preparation (#1702)
Browse files Browse the repository at this point in the history
  • Loading branch information
JaffaKetchup authored Oct 24, 2023
1 parent 26fae58 commit 6e8cc20
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 6 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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"**
Expand Down
2 changes: 1 addition & 1 deletion example/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
4 changes: 2 additions & 2 deletions lib/src/layer/tile_layer/tile_layer.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion windowsApplicationInstallerSetup.iss
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 6e8cc20

Please sign in to comment.