Skip to content

Commit

Permalink
Merge branch 'main' into enhancement/resolve-warnings-analysis-options
Browse files Browse the repository at this point in the history
  • Loading branch information
TimHoogstrate committed Mar 7, 2024
2 parents afa9122 + 6668457 commit 0c40b62
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions geocoding_platform_interface/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 3.2.1

- Fixed analysis warnings from `flutter analyse`.

## 3.2.0

- Adds `isPresent` method to the platform interface.
Expand Down
2 changes: 1 addition & 1 deletion geocoding_platform_interface/lib/src/models/location.dart
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class Location {
final DateTime timestamp;

@override
bool operator ==(dynamic other) =>
bool operator ==(Object other) =>
other is Location &&
other.latitude == latitude &&
other.longitude == longitude &&
Expand Down
2 changes: 1 addition & 1 deletion geocoding_platform_interface/lib/src/models/placemark.dart
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ class Placemark {
final String? subThoroughfare;

@override
bool operator ==(dynamic other) =>
bool operator ==(Object other) =>
other is Placemark &&
other.administrativeArea == administrativeArea &&
other.country == country &&
Expand Down
2 changes: 1 addition & 1 deletion geocoding_platform_interface/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: A common platform interface for the geocoding plugin.
homepage: https://github.com/baseflow/flutter-geocoding/tree/main/geocoding_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: 3.2.0
version: 3.2.1

dependencies:
flutter:
Expand Down

0 comments on commit 0c40b62

Please sign in to comment.