Prepare 2.11.0 release

This commit is contained in:
Simon Binder 2023-08-11 15:20:22 +02:00
parent fa83fbe876
commit f857cb17b5
No known key found for this signature in database
GPG Key ID: 7891917E4147B8C0
5 changed files with 8 additions and 7 deletions

View File

@ -5,9 +5,10 @@
expressions.
- Add the `substr` extension on `Expression<String>` to call the sqlite3 function from
the Dart API.
- Add `isolateSetup` to `NativeDatabase.createInBackground()` to override libraries.
- Add `isolateSetup` to `NativeDatabase.createInBackground()` to override native libraries
or perform other database-unrelated setup work.
- Add `WasmDatabase.probe()`, a method probing for available implementations and existing
databases without opening one directly.
databases on the web without opening one directly.
## 2.10.0

View File

@ -1,6 +1,6 @@
name: drift
description: Drift is a reactive library to store relational data in Dart and Flutter applications.
version: 2.11.0-dev
version: 2.11.0
repository: https://github.com/simolus3/drift
homepage: https://drift.simonbinder.eu/
issue_tracker: https://github.com/simolus3/drift/issues

View File

@ -1,6 +1,6 @@
name: drift_dev
description: Dev-dependency for users of drift. Contains the generator and development tools.
version: 2.10.0
version: 2.11.0
repository: https://github.com/simolus3/drift
homepage: https://drift.simonbinder.eu/
issue_tracker: https://github.com/simolus3/drift/issues
@ -30,7 +30,7 @@ dependencies:
io: ^1.0.3
# Drift-specific analysis and apis
drift: '>=2.10.0 <2.11.0'
drift: '>=2.11.0 <2.12.0'
sqlite3: '>=0.1.6 <3.0.0'
sqlparser: '^0.31.0'

View File

@ -1,4 +1,4 @@
## 0.31.0-dev
## 0.31.0
- Add `SqlEngine.parseMultiple` to parse multiple statements into one AST.

View File

@ -1,6 +1,6 @@
name: sqlparser
description: Parses sqlite statements and performs static analysis on them
version: 0.31.0-dev
version: 0.31.0
homepage: https://github.com/simolus3/drift/tree/develop/sqlparser
repository: https://github.com/simolus3/drift
#homepage: https://drift.simonbinder.eu/