From 2713365c012822fcb35f7478c9174b293706000d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 30 Jan 2024 10:24:26 +0000 Subject: [PATCH 1/2] [geocoding_ios]: Bump geocoding_platform_interface in /geocoding_ios Bumps [geocoding_platform_interface](https://github.com/baseflow/flutter-geocoding) from 2.0.1 to 3.1.0. - [Commits](https://github.com/baseflow/flutter-geocoding/compare/geocoding_platform_interface_v2.0.1...geocoding_platform_interface_v3.1.0) --- updated-dependencies: - dependency-name: geocoding_platform_interface dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- geocoding_ios/pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/geocoding_ios/pubspec.yaml b/geocoding_ios/pubspec.yaml index 47df649..2891094 100644 --- a/geocoding_ios/pubspec.yaml +++ b/geocoding_ios/pubspec.yaml @@ -12,7 +12,7 @@ dependencies: flutter: sdk: flutter - geocoding_platform_interface: ^2.0.0 + geocoding_platform_interface: ">=2.0.0 <4.0.0" dev_dependencies: flutter_test: From 90f1eae2e61ab27cc1f5cf64b31d5c0eb1e6bd87 Mon Sep 17 00:00:00 2001 From: Maurits van Beusekom Date: Wed, 31 Jan 2024 13:32:27 +0100 Subject: [PATCH 2/2] Fix analysis warnings --- geocoding_ios/example/pubspec.yaml | 2 +- geocoding_ios/pubspec.yaml | 4 ++-- geocoding_ios/test/geocoding_test.dart | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/geocoding_ios/example/pubspec.yaml b/geocoding_ios/example/pubspec.yaml index fff77a5..2b38431 100644 --- a/geocoding_ios/example/pubspec.yaml +++ b/geocoding_ios/example/pubspec.yaml @@ -19,7 +19,7 @@ dependencies: # The example app is bundled with the plugin so we use a path dependency on # the parent directory to use the current plugin's version. path: ../ - geocoding_platform_interface: ^2.0.0 + geocoding_platform_interface: ^3.1.0 # The following adds the Cupertino Icons font to your application. # Use with the CupertinoIcons class for iOS style icons. diff --git a/geocoding_ios/pubspec.yaml b/geocoding_ios/pubspec.yaml index 2891094..9098c28 100644 --- a/geocoding_ios/pubspec.yaml +++ b/geocoding_ios/pubspec.yaml @@ -12,13 +12,13 @@ dependencies: flutter: sdk: flutter - geocoding_platform_interface: ">=2.0.0 <4.0.0" + geocoding_platform_interface: ^3.1.0 dev_dependencies: flutter_test: sdk: flutter - flutter_lints: ^2.0.1 + flutter_lints: ^3.0.1 mockito: ^5.0.0 plugin_platform_interface: ^2.0.0 diff --git a/geocoding_ios/test/geocoding_test.dart b/geocoding_ios/test/geocoding_test.dart index cf48ae8..b87799a 100644 --- a/geocoding_ios/test/geocoding_test.dart +++ b/geocoding_ios/test/geocoding_test.dart @@ -9,7 +9,7 @@ final mockLocation = Location( timestamp: DateTime.fromMillisecondsSinceEpoch(0).toUtc(), ); -final mockPlacemark = Placemark( +const mockPlacemark = Placemark( administrativeArea: 'Overijssel', country: 'Netherlands', isoCountryCode: 'NL',