Skip to content

Commit

Permalink
Merge branch 'main' into make-async
Browse files Browse the repository at this point in the history
  • Loading branch information
mvanbeusekom authored Jan 31, 2024
2 parents d89a11d + 1738a02 commit c736cdf
Show file tree
Hide file tree
Showing 11 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/geocoding.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,15 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- uses: actions/checkout@v4

# Make sure the stable version of Flutter is available
- uses: subosito/flutter-action@v2
with:
channel: 'stable'

# Make sure JAVA version 17 is installed on build agent.
- uses: actions/setup-java@v3
- uses: actions/setup-java@v4
with:
distribution: 'temurin' # See 'Supported distributions' for available options
java-version: '17'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/geocoding_android.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,15 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- uses: actions/checkout@v4

# Make sure the stable version of Flutter is available
- uses: subosito/flutter-action@v2
with:
channel: 'stable'

# Make sure JAVA version 17 is installed on build agent.
- uses: actions/setup-java@v3
- uses: actions/setup-java@v4
with:
distribution: 'temurin' # See 'Supported distributions' for available options
java-version: '17'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/geocoding_ios.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- uses: actions/checkout@v4

# Make sure the stable version of Flutter is available
- uses: subosito/flutter-action@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/geocoding_platform_interface.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- uses: actions/checkout@v4

# Make sure the stable version of Flutter is available
- uses: subosito/flutter-action@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/no-response.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
# the `status: needs more info` label, the issue should be closed automatically.
# 5. Set the `close-issue-message` parameter with a text that will be placed as a comment to the respective issue that
# is closed to explain why the issue was closed.
- uses: actions/stale@v8
- uses: actions/stale@v9
with:
stale-issue-label: 'status: needs more info'
days-before-stale: -1
Expand Down
2 changes: 1 addition & 1 deletion geocoding/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ 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

Expand Down
2 changes: 1 addition & 1 deletion geocoding_android/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ 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

Expand Down
2 changes: 1 addition & 1 deletion geocoding_ios/example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions geocoding_ios/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ dependencies:
flutter:
sdk: flutter

geocoding_platform_interface: ^2.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

Expand Down
2 changes: 1 addition & 1 deletion geocoding_ios/test/geocoding_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ final mockLocation = Location(
timestamp: DateTime.fromMillisecondsSinceEpoch(0).toUtc(),
);

final mockPlacemark = Placemark(
const mockPlacemark = Placemark(
administrativeArea: 'Overijssel',
country: 'Netherlands',
isoCountryCode: 'NL',
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 @@ -16,7 +16,7 @@ dev_dependencies:
flutter_test:
sdk: flutter

flutter_lints: ^2.0.1
flutter_lints: ^3.0.1
mockito: ^5.0.0

environment:
Expand Down

0 comments on commit c736cdf

Please sign in to comment.