Skip to content

Commit

Permalink
dart3a branch
Browse files Browse the repository at this point in the history
  • Loading branch information
alextekartik committed Jul 10, 2023
1 parent 8fd4049 commit 001906e
Show file tree
Hide file tree
Showing 10 changed files with 21 additions and 17 deletions.
4 changes: 2 additions & 2 deletions packages_web/sqflite_common_ffi_web/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ funding:
- https://github.com/sponsors/alextekartik

environment:
sdk: '>=2.18.0 <4.0.0'
sdk: '>=3.0.0 <4.0.0'

dependencies:
path: '>=1.7.0 <3.0.0'
Expand Down Expand Up @@ -36,4 +36,4 @@ dev_dependencies:
# path: ../../sqflite_common

executables:
setup:
setup:
4 changes: 2 additions & 2 deletions packages_web/sqflite_common_ffi_web_test/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version: 0.1.0
publish_to: none

environment:
sdk: '>=2.18.0 <4.0.0'
sdk: '>=3.0.0 <4.0.0'

dependencies:
path: ^1.7.0
Expand Down Expand Up @@ -39,4 +39,4 @@ sqflite:
# Re run setup then and change the sharedWorkerUri options in the client.
#
sqflite_common_ffi_web:
sw_js_file: sqflite_sw_v1.js
sw_js_file: sqflite_sw_v1.js
4 changes: 2 additions & 2 deletions sqflite/example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ publish_to: none
version: '0.4.0'

environment:
sdk: '>=2.18.0 <4.0.0'
sdk: '>=3.0.0 <4.0.0'

dependencies:
path: any
Expand Down Expand Up @@ -50,4 +50,4 @@ dependency_overrides:
sqflite:
path: ../
sqflite_common:
path: ../../sqflite_common
path: ../../sqflite_common
4 changes: 2 additions & 2 deletions sqflite/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ funding:
- https://github.com/sponsors/alextekartik

environment:
sdk: '>=2.18.0 <4.0.0'
sdk: '>=3.0.0 <4.0.0'
flutter: ">=3.3.0"

flutter:
Expand Down Expand Up @@ -38,4 +38,4 @@ dev_dependencies:
flutter_test:
sdk: flutter
test_api: '>=0.2.19'
pub_semver: '>=2.0.0'
pub_semver: '>=2.0.0'
4 changes: 4 additions & 0 deletions sqflite/test/sqlite_api_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ void main() {
]) {
expect(value, isNotNull);
}
try {
// ignore: unnecessary_cast
SqfliteDatabaseExecutorExt((null as Database?)!).getVersion();
} catch (_) {}
});
});
}
4 changes: 2 additions & 2 deletions sqflite_common/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ funding:
- https://github.com/sponsors/alextekartik

environment:
sdk: '>=2.18.0 <4.0.0'
sdk: '>=3.0.0 <4.0.0'

dependencies:
synchronized: '>=3.0.0 <5.0.0'
Expand All @@ -19,4 +19,4 @@ dev_dependencies:
http: '>=0.13.0'
test: '>=1.16.2'
test_api: '>=0.2.19'
pub_semver: '>=2.0.0'
pub_semver: '>=2.0.0'
2 changes: 1 addition & 1 deletion sqflite_common_ffi/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ funding:
- https://github.com/sponsors/alextekartik

environment:
sdk: '>=2.18.0 <4.0.0'
sdk: '>=3.0.0 <4.0.0'

dependencies:
sqlite3: '>=1.11.0 <3.0.0'
Expand Down
4 changes: 2 additions & 2 deletions sqflite_common_test/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version: 0.5.0
publish_to: none

environment:
sdk: '>=2.18.0 <4.0.0'
sdk: '>=3.0.0 <4.0.0'

dependencies:
sqflite_common_ffi: '>=2.2.0-dev.5 <4.0.0'
Expand All @@ -21,4 +21,4 @@ dependency_overrides:
sqflite_common:
path: ../sqflite_common
sqflite_common_ffi:
path: ../sqflite_common_ffi
path: ../sqflite_common_ffi
4 changes: 2 additions & 2 deletions sqflite_support/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ homepage: https://github.com/tekartik/sqflite
publish_to: none

environment:
sdk: '>=2.18.0 <4.0.0'
sdk: '>=3.0.0 <4.0.0'

dev_dependencies:
lints: '>=1.0.0'
Expand All @@ -15,4 +15,4 @@ dev_dependencies:
path:
pub_semver:

dependency_overrides:
dependency_overrides:
4 changes: 2 additions & 2 deletions sqflite_test_app/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ publish_to: none
version: 1.1.1

environment:
sdk: '>=2.18.0 <4.0.0'
sdk: '>=3.0.0 <4.0.0'

dependencies:
# analyzer: '>=5.2.0'
Expand Down Expand Up @@ -108,4 +108,4 @@ flutter:
# weight: 700
#
# For details regarding fonts from package dependencies,
# see https://flutter.dev/custom-fonts/#from-packages
# see https://flutter.dev/custom-fonts/#from-packages

0 comments on commit 001906e

Please sign in to comment.