From 5e4405ff98bb1b671b440f93e8b649c911b3e71e Mon Sep 17 00:00:00 2001 From: wudy Date: Mon, 2 Oct 2023 21:58:44 +0900 Subject: [PATCH 1/2] Fix spellings in comments of LocationPermission --- geolocator_platform_interface/CHANGELOG.md | 6 +++++- .../lib/src/enums/location_permission.dart | 4 ++-- geolocator_platform_interface/pubspec.yaml | 4 ++-- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/geolocator_platform_interface/CHANGELOG.md b/geolocator_platform_interface/CHANGELOG.md index fb4ff66b..0f61e48b 100644 --- a/geolocator_platform_interface/CHANGELOG.md +++ b/geolocator_platform_interface/CHANGELOG.md @@ -1,3 +1,7 @@ +## 4.1.2 + +- Fixed spellings in comments of LocationPermission + ## 4.1.1 - Updates dependencies to latest versions to prevent conflicts with other packages. @@ -24,7 +28,7 @@ ## 4.0.4 -- Fixes a bug where listening to the position stream immediately after an error, results in listening to a dead stream. +- Fixes a bug where listening to the position stream immediately after an error, results in listening to a dead stream. ## 4.0.3 diff --git a/geolocator_platform_interface/lib/src/enums/location_permission.dart b/geolocator_platform_interface/lib/src/enums/location_permission.dart index 285a4594..402e0450 100644 --- a/geolocator_platform_interface/lib/src/enums/location_permission.dart +++ b/geolocator_platform_interface/lib/src/enums/location_permission.dart @@ -4,8 +4,8 @@ enum LocationPermission { /// to request permission using the `Geolocator.requestPermission()` method. denied, - /// Permission to access the device's location is permenantly denied. When - /// requestiong permissions the permission dialog will not been shown until + /// Permission to access the device's location is permanently denied. When + /// requesting permissions the permission dialog will not been shown until /// the user updates the permission in the App settings. deniedForever, diff --git a/geolocator_platform_interface/pubspec.yaml b/geolocator_platform_interface/pubspec.yaml index 82489c08..42b5a7a2 100644 --- a/geolocator_platform_interface/pubspec.yaml +++ b/geolocator_platform_interface/pubspec.yaml @@ -3,12 +3,12 @@ description: A common platform interface for the geolocator plugin. repository: https://github.com/baseflow/flutter-geolocator/tree/main/geolocator_platform_interface # NOTE: We strongly prefer non-breaking changes, even at the expense of a # less-clean API. See https://flutter.dev/go/platform-interface-breaking-changes -version: 4.1.1 +version: 4.1.2 dependencies: flutter: sdk: flutter - + plugin_platform_interface: ^2.1.6 vector_math: ^2.1.4 meta: ^1.9.1 From a0e93d8a0aff1aea9e708789d63ce88351697bc9 Mon Sep 17 00:00:00 2001 From: wudy Date: Tue, 3 Oct 2023 18:18:46 +0900 Subject: [PATCH 2/2] Update CHANGELOG --- geolocator_platform_interface/CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/geolocator_platform_interface/CHANGELOG.md b/geolocator_platform_interface/CHANGELOG.md index 0f61e48b..1682b3fa 100644 --- a/geolocator_platform_interface/CHANGELOG.md +++ b/geolocator_platform_interface/CHANGELOG.md @@ -1,6 +1,6 @@ ## 4.1.2 -- Fixed spellings in comments of LocationPermission +- Fix spellings in comments of LocationPermission ## 4.1.1