Skip to content

Commit

Permalink
Update dependencies (#599)
Browse files Browse the repository at this point in the history
  • Loading branch information
vitusortner authored Sep 12, 2021
1 parent 5663000 commit 7e9fd25
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 25 deletions.
1 change: 0 additions & 1 deletion analysis_options.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,6 @@ linter:
#- sort_constructors_first
- sort_pub_dependencies
- sort_unnamed_constructors_first
- super_goes_last
- test_types_in_equals
- throw_in_finally
# - type_annotate_public_apis # subset of always_specify_types
Expand Down
10 changes: 5 additions & 5 deletions example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ packages:
name: code_builder
url: "https://pub.dartlang.org"
source: hosted
version: "4.0.0"
version: "4.1.0"
collection:
dependency: transitive
description:
Expand Down Expand Up @@ -393,21 +393,21 @@ packages:
name: sqflite
url: "https://pub.dartlang.org"
source: hosted
version: "2.0.0+3"
version: "2.0.0+4"
sqflite_common:
dependency: transitive
description:
name: sqflite_common
url: "https://pub.dartlang.org"
source: hosted
version: "2.0.0+2"
version: "2.0.1+1"
sqflite_common_ffi:
dependency: transitive
description:
name: sqflite_common_ffi
url: "https://pub.dartlang.org"
source: hosted
version: "2.0.0"
version: "2.0.0+3"
sqlite3:
dependency: transitive
description:
Expand Down Expand Up @@ -522,4 +522,4 @@ packages:
version: "3.1.0"
sdks:
dart: ">=2.12.0 <3.0.0"
flutter: ">=1.24.0-10"
flutter: ">=1.10.0"
2 changes: 1 addition & 1 deletion example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ dependencies:
sdk: flutter

dev_dependencies:
build_runner: ^2.0.0
build_runner: ^2.1.2
floor_generator:
path: ../floor_generator/
flutter_test:
Expand Down
10 changes: 5 additions & 5 deletions floor/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ packages:
name: code_builder
url: "https://pub.dartlang.org"
source: hosted
version: "4.0.0"
version: "4.1.0"
collection:
dependency: "direct dev"
description:
Expand Down Expand Up @@ -393,21 +393,21 @@ packages:
name: sqflite
url: "https://pub.dartlang.org"
source: hosted
version: "2.0.0+3"
version: "2.0.0+4"
sqflite_common:
dependency: transitive
description:
name: sqflite_common
url: "https://pub.dartlang.org"
source: hosted
version: "2.0.0+2"
version: "2.0.1+1"
sqflite_common_ffi:
dependency: "direct main"
description:
name: sqflite_common_ffi
url: "https://pub.dartlang.org"
source: hosted
version: "2.0.0"
version: "2.0.0+3"
sqlite3:
dependency: transitive
description:
Expand Down Expand Up @@ -522,4 +522,4 @@ packages:
version: "3.1.0"
sdks:
dart: ">=2.12.0 <3.0.0"
flutter: ">=1.24.0-10"
flutter: ">=1.10.0"
8 changes: 4 additions & 4 deletions floor/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ dependencies:
sdk: flutter
meta: ^1.7.0
path: ^1.8.0
sqflite: ^2.0.0+3
sqflite_common_ffi: ^2.0.0
sqflite: ^2.0.0+4
sqflite_common_ffi: ^2.0.0+3

dev_dependencies:
build_runner: ^2.0.0
build_runner: ^2.1.2
collection: ^1.15.0
floor_generator:
path: ../floor_generator/
flutter_test:
sdk: flutter
matcher: ^0.12.10
mockito: ^5.0.5
mockito: ^5.0.15
2 changes: 1 addition & 1 deletion floor_generator/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ packages:
name: code_builder
url: "https://pub.dartlang.org"
source: hosted
version: "4.0.0"
version: "4.1.0"
collection:
dependency: "direct main"
description:
Expand Down
12 changes: 6 additions & 6 deletions floor_generator/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,19 @@ environment:

dependencies:
analyzer: ^2.2.0
build: ^2.0.0
build: ^2.1.0
build_config: ^1.0.0
code_builder: ^4.0.0
code_builder: ^4.1.0
collection: ^1.15.0
floor_annotation:
path: ../floor_annotation/
meta: ^1.7.0
source_gen: ^1.0.0
source_gen: ^1.1.0
strings: ^0.2.1

dev_dependencies:
build_test: ^2.1.0
dart_style: 2.1.0
build_test: ^2.1.3
dart_style: ^2.1.0
path: ^1.8.0
test: 1.17.12
test: ^1.17.12
test_cov: ^1.0.1
4 changes: 2 additions & 2 deletions tool/analyze.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ flutter analyze
cd ..

cd floor_annotation
dartanalyzer --fatal-infos --fatal-warnings .
dart analyze --fatal-infos --fatal-warnings .
cd ..

cd floor_generator
dartanalyzer --fatal-infos --fatal-warnings .
dart analyze --fatal-infos --fatal-warnings .
cd ..

cd example
Expand Down

0 comments on commit 7e9fd25

Please sign in to comment.