mirror of https://github.com/AMT-Cheif/drift.git
Prepare 2.11.0 release
This commit is contained in:
parent
fa83fbe876
commit
f857cb17b5
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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'
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
## 0.31.0-dev
|
||||
## 0.31.0
|
||||
|
||||
- Add `SqlEngine.parseMultiple` to parse multiple statements into one AST.
|
||||
|
||||
|
|
|
@ -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/
|
||||
|
|
Loading…
Reference in New Issue