Skip to content

Commit 92cef21

Browse files
JaffaKetchupjosxha
andauthored
chore: prepare for v7.0.1 release (#1911)
Co-authored-by: Joscha <[email protected]>
1 parent ba17b39 commit 92cef21

7 files changed

+34
-18
lines changed

CHANGELOG.md

+14-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,20 @@ Please consider [donating](https://docs.fleaflet.dev/supporters#support-us) or [
44

55
This CHANGELOG does not include every commit and/or PR - it is a hand picked selection of the most important ones. For a full list of changes, please check the GitHub repository releases/tags.
66

7-
## [7.0.0] - 2024/05/XX
7+
## [7.0.1] - 2024/06/09
8+
9+
Contains the following user-affecting bug fixes:
10+
11+
- Implemented internal efficient(-ish) change detection for `PolygonLayer` & `PolylineLayer` - [#1904](https://github.com/fleaflet/flutter_map/pull/1904)
12+
- Fixed `PolygonLayer.useAltRenderer` renderer when `Polygon`s have multiple holes - [#1906](https://github.com/fleaflet/flutter_map/pull/1906)
13+
- Fixed overlapping `Polygon` cutting & color/translucency mixing - [#1901](https://github.com/fleaflet/flutter_map/pull/1901)
14+
- Downgraded dependencies to support Flutter 3.19 - [#1897](https://github.com/fleaflet/flutter_map/pull/1897)
15+
16+
Contains the following user-affecting performance improvements:
17+
18+
- Improved speed of `isPointInPolygon` method up to 40% - [#1907](https://github.com/fleaflet/flutter_map/pull/1907)
19+
20+
## [7.0.0] - 2024/05/26
821

922
**"`onTap`-ish At Last!"**
1023

CONTRIBUTING.md

+12-8
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,15 @@ We're always happy to receive improvements and fixes, so please submit them when
55
> Many feature additions are more suitable for plugins, instead of being added to the core. This is aimed to reduce the future maintenance burden/cost on the maintainers.
66
If we deny your PR for this reason, please do consider publishing a plugin, and we'll be happy to add it to the [Plugins List](https://docs.fleaflet.dev/plugins/list)! See [Making A Plugin](https://docs.fleaflet.dev/plugins/making-a-plugin) for more information.
77

8-
* **If your PR will add a major or breaking change, please discuss it with us first, via the Issue Tracker**
9-
We don't want to waste your time if we think it's more appropriate for a plugin, and it helps to make a clear plan before starting work
10-
* **Create a draft PR as soon as work starts, and take it out of draft status when ready for review**
11-
Keep everyone in the loop, so no-one tries working on the same thing as you
12-
* **Don't change the package version, GitHub workflows, lints, or any other meta files without clarification**
13-
We rely on a standardized process and procedure to ensure top-quality releases
14-
* **Use a clear (preferably [Conventional](https://www.conventionalcommits.org/)) PR title**
15-
This makes it easier for us to group commits for release and write correct CHANGELOGs
8+
* **If your PR will add a major or breaking change, please discuss it with us first, via the Issue Tracker.**
9+
We don't want to waste your time if we think it's more appropriate for a plugin, and it helps to make a clear plan before starting work.
10+
Additionally, if your PR makes breaking changes, or depends on another breaking commit, we may have some additional guidance.
11+
12+
* **Create a draft PR as soon as work starts, and take it out of draft status when ready for review.**
13+
Keep everyone in the loop, so no-one tries working on the same thing as you.
14+
15+
* **Don't change the package version, GitHub workflows, lints, or any other meta files without clarification.**
16+
We rely on a standardized process and procedure to ensure top-quality releases.
17+
18+
* **Use a clear (preferably [Conventional](https://www.conventionalcommits.org/)) PR title.**
19+
This makes it easier for us to group commits for release and write correct CHANGELOGs.

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
BSD 3-Clause License
22

3-
Copyright (c) 2018-2023, the 'flutter_map' authors and maintainers
3+
Copyright (c) 2018-2024, the 'flutter_map' authors and maintainers
44

55
All rights reserved.
66

example/android/app/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ if (localPropertiesFile.exists()) {
1414

1515
def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
1616
if (flutterVersionCode == null) {
17-
flutterVersionCode = '6'
17+
flutterVersionCode = '7'
1818
}
1919

2020
def flutterVersionName = localProperties.getProperty('flutter.versionName')
2121
if (flutterVersionName == null) {
22-
flutterVersionName = '7.0.0'
22+
flutterVersionName = '7.0.1'
2323
}
2424

2525
android {

example/pubspec.yaml

+3-4
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: 7.0.0
4+
version: 7.0.1
55

66
environment:
77
sdk: ">=3.0.0 <4.0.0"
@@ -11,20 +11,19 @@ dependencies:
1111
flutter:
1212
sdk: flutter
1313
flutter_map:
14-
flutter_map_cancellable_tile_provider:
14+
flutter_map_cancellable_tile_provider: ^3.0.0
1515
flutter_map_geojson: ^1.0.8
1616
http: ^1.2.1
1717
latlong2: ^0.9.1
1818
proj4dart: ^2.1.0
1919
shared_preferences: ^2.2.3
20-
url_launcher: ^6.2.6
20+
url_launcher: ^6.3.0
2121
url_strategy: ^0.2.0
2222
vector_math: ^2.1.4
2323

2424
dependency_overrides:
2525
flutter_map:
2626
path: ../
27-
flutter_map_cancellable_tile_provider:
2827

2928
dev_dependencies:
3029
flutter_lints: ^4.0.0

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: 7.0.0
3+
version: 7.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 7.0.0"
5+
#define MyAppVersion "for 7.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)