Skip to content

Commit

Permalink
deps: upgrade to flutter 3.3.0 (#36)
Browse files Browse the repository at this point in the history
* deps: upgrade to flutter 3.3.0

* ci: use flutter 3.3.0
  • Loading branch information
marcossevilla authored Oct 5, 2022
1 parent 287202d commit 107834a
Show file tree
Hide file tree
Showing 16 changed files with 36 additions and 34 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/examples.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
flutter-version: '3.0.0'
flutter-version: '3.3.0'
channel: 'stable'

- name: Install Tools
Expand Down
2 changes: 2 additions & 0 deletions cli/lib/commands/rm/command.dart
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ Future<void> run(List<String> args) async {
case FileSystemEntityType.notFound:
print('The element <$elementPath> does not exist');
break;
case FileSystemEntityType.pipe:
case FileSystemEntityType.link:
case FileSystemEntityType.unixDomainSock:
throw UnsupportedError('Unsupported element type');
}
} catch (e) {
Expand Down
2 changes: 1 addition & 1 deletion cli/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: A set of utility commands.
version: 0.1.0+1

environment:
sdk: ">=2.17.0 <3.0.0"
sdk: ">=2.18.0 <3.0.0"

dependencies:
path: ^1.8.2
Expand Down
2 changes: 1 addition & 1 deletion examples/form_flow/packages/formz_inputs/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version: 1.0.0+1
publish_to: none

environment:
sdk: ">=2.17.0 <3.0.0"
sdk: ">=2.18.0 <3.0.0"

dependencies:
formz: ^0.4.1
Expand Down
2 changes: 1 addition & 1 deletion examples/form_flow/packages/profile/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version: 1.0.0+1
publish_to: none

environment:
sdk: ">=2.17.0 <3.0.0"
sdk: ">=2.18.0 <3.0.0"

dependencies:
equatable: ^2.0.3
Expand Down
32 changes: 16 additions & 16 deletions examples/form_flow/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ packages:
name: async
url: "https://pub.dartlang.org"
source: hosted
version: "2.8.2"
version: "2.9.0"
bloc:
dependency: "direct main"
description:
Expand Down Expand Up @@ -56,7 +56,7 @@ packages:
name: characters
url: "https://pub.dartlang.org"
source: hosted
version: "1.2.0"
version: "1.2.1"
charcode:
dependency: transitive
description:
Expand All @@ -70,7 +70,7 @@ packages:
name: clock
url: "https://pub.dartlang.org"
source: hosted
version: "1.1.0"
version: "1.1.1"
collection:
dependency: transitive
description:
Expand Down Expand Up @@ -119,7 +119,7 @@ packages:
name: fake_async
url: "https://pub.dartlang.org"
source: hosted
version: "1.3.0"
version: "1.3.1"
file:
dependency: transitive
description:
Expand Down Expand Up @@ -232,21 +232,21 @@ packages:
name: matcher
url: "https://pub.dartlang.org"
source: hosted
version: "0.12.11"
version: "0.12.12"
material_color_utilities:
dependency: transitive
description:
name: material_color_utilities
url: "https://pub.dartlang.org"
source: hosted
version: "0.1.4"
version: "0.1.5"
meta:
dependency: transitive
description:
name: meta
url: "https://pub.dartlang.org"
source: hosted
version: "1.7.0"
version: "1.8.0"
mime:
dependency: transitive
description:
Expand Down Expand Up @@ -288,7 +288,7 @@ packages:
name: path
url: "https://pub.dartlang.org"
source: hosted
version: "1.8.1"
version: "1.8.2"
pool:
dependency: transitive
description:
Expand Down Expand Up @@ -370,7 +370,7 @@ packages:
name: source_span
url: "https://pub.dartlang.org"
source: hosted
version: "1.8.2"
version: "1.9.0"
stack_trace:
dependency: transitive
description:
Expand All @@ -391,35 +391,35 @@ packages:
name: string_scanner
url: "https://pub.dartlang.org"
source: hosted
version: "1.1.0"
version: "1.1.1"
term_glyph:
dependency: transitive
description:
name: term_glyph
url: "https://pub.dartlang.org"
source: hosted
version: "1.2.0"
version: "1.2.1"
test:
dependency: transitive
description:
name: test
url: "https://pub.dartlang.org"
source: hosted
version: "1.21.1"
version: "1.21.4"
test_api:
dependency: transitive
description:
name: test_api
url: "https://pub.dartlang.org"
source: hosted
version: "0.4.9"
version: "0.4.12"
test_core:
dependency: transitive
description:
name: test_core
url: "https://pub.dartlang.org"
source: hosted
version: "0.4.13"
version: "0.4.16"
typed_data:
dependency: transitive
description:
Expand Down Expand Up @@ -477,5 +477,5 @@ packages:
source: hosted
version: "3.1.0"
sdks:
dart: ">=2.17.0 <3.0.0"
flutter: ">=3.0.0"
dart: ">=2.18.0 <3.0.0"
flutter: ">=3.3.0"
4 changes: 2 additions & 2 deletions examples/form_flow/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ version: 1.0.0+1
publish_to: none

environment:
sdk: ">=2.17.0 <3.0.0"
flutter: "3.0.0"
sdk: ">=2.18.0 <3.0.0"
flutter: "3.3.0"

dependencies:
bloc: ^8.1.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version: 1.0.0+1
publish_to: none

environment:
sdk: ">=2.17.0 <3.0.0"
sdk: ">=2.18.0 <3.0.0"

dependencies:
local_analytics_api:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version: 1.0.0+1
publish_to: none

environment:
sdk: ">=2.17.0 <3.0.0"
sdk: ">=2.18.0 <3.0.0"

dependencies:
hive: ^2.0.4
Expand Down
4 changes: 2 additions & 2 deletions examples/launch_analytics/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ publish_to: "none"
version: 1.0.0+1

environment:
sdk: ">=2.17.0 <3.0.0"
flutter: "3.0.0"
sdk: ">=2.18.0 <3.0.0"
flutter: "3.3.0"

dependencies:
analytics_repository:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version: 1.0.0+1
publish_to: none

environment:
sdk: ">=2.17.0 <3.0.0"
sdk: ">=2.18.0 <3.0.0"

dependencies:
hive: ^2.0.4
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version: 1.0.0+1
publish_to: none

environment:
sdk: ">=2.17.0 <3.0.0"
sdk: ">=2.18.0 <3.0.0"

dev_dependencies:
test: ^1.17.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version: 1.0.0+1
publish_to: none

environment:
sdk: ">=2.17.0 <3.0.0"
sdk: ">=2.18.0 <3.0.0"

dependencies:
flutter:
Expand Down
4 changes: 2 additions & 2 deletions examples/preference_navigation/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ publish_to: "none"
version: 1.0.0+1

environment:
sdk: ">=2.17.0 <3.0.0"
flutter: "3.0.0"
sdk: ">=2.18.0 <3.0.0"
flutter: "3.3.0"

dependencies:
bloc: ^8.1.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version: 1.0.0+1
publish_to: none

environment:
sdk: ">=2.17.0 <3.0.0"
sdk: ">=2.18.0 <3.0.0"

dependencies:
equatable: ^2.0.3
Expand Down
4 changes: 2 additions & 2 deletions examples/profile_accounts/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ publish_to: "none"
version: 1.0.0+1

environment:
sdk: ">=2.17.0 <3.0.0"
flutter: "3.0.0"
sdk: ">=2.18.0 <3.0.0"
flutter: "3.3.0"

dependencies:
bloc: ^8.1.0
Expand Down

0 comments on commit 107834a

Please sign in to comment.