Skip to content

Commit

Permalink
Support drift 2.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
NicolaVerbeeck committed Jan 8, 2023
1 parent 52c103d commit 9844c9c
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .pubignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,6 @@ example/analysis_options.yaml
.idea
.flutter-plugins
.flutter-plugins-dependencies
example/build
example/build
build/
*.iml
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.5.0

* Add support for drift 2.4.0

## 0.4.0

* Upgrade dependencies
Expand Down
2 changes: 2 additions & 0 deletions lib/src/drift_sql_database_server.dart
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,8 @@ SQLDataType _makeType(
return SQLDataType.blob;
case DriftSqlType.double:
return SQLDataType.real;
case DriftSqlType.any:
return SQLDataType.text;
}
}

Expand Down
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: drift_local_storage_inspector
description: A SQL local storage inspector implementation that exposes drift databases
version: 0.4.0
version: 0.5.0
homepage: https://github.com/NicolaVerbeeck/drift_local_storage_inspector

funding:
Expand All @@ -11,7 +11,7 @@ environment:
sdk: ">=2.18.0 <3.0.0"

dependencies:
drift: ^2.2.0
drift: ^2.4.2
flutter:
sdk: flutter
storage_inspector: ^0.3.0
Expand Down

0 comments on commit 9844c9c

Please sign in to comment.