mirror of https://github.com/AMT-Cheif/drift.git
Prepare drift 1.1 release
This commit is contained in:
parent
1c128ea885
commit
bf0dcfb693
|
@ -1,4 +1,4 @@
|
||||||
## 1.1.0-dev
|
## 1.1.0
|
||||||
|
|
||||||
- Add the `references` method to `BuildColumn` to reference a column declared
|
- Add the `references` method to `BuildColumn` to reference a column declared
|
||||||
in another Dart table.
|
in another Dart table.
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
name: drift
|
name: drift
|
||||||
description: Drift is a reactive library to store relational data in Dart and Flutter applications.
|
description: Drift is a reactive library to store relational data in Dart and Flutter applications.
|
||||||
version: 1.1.0-dev
|
version: 1.1.0
|
||||||
repository: https://github.com/simolus3/moor
|
repository: https://github.com/simolus3/moor
|
||||||
homepage: https://drift.simonbinder.eu/
|
homepage: https://drift.simonbinder.eu/
|
||||||
issue_tracker: https://github.com/simolus3/moor/issues
|
issue_tracker: https://github.com/simolus3/moor/issues
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
## 1.0.3-dev
|
## 1.1.0
|
||||||
|
|
||||||
- Consider `drift`-named files when generating schema migrations ([#1486](https://github.com/simolus3/moor/issues/1486))
|
- Consider `drift`-named files when generating schema migrations ([#1486](https://github.com/simolus3/moor/issues/1486))
|
||||||
- Emit correct SQL code when using arrays with the `new_sql_code_generation`
|
- Emit correct SQL code when using arrays with the `new_sql_code_generation`
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
name: drift_dev
|
name: drift_dev
|
||||||
description: Dev-dependency for users of drift. Contains a the generator and development tools.
|
description: Dev-dependency for users of drift. Contains a the generator and development tools.
|
||||||
version: 1.0.2
|
version: 1.1.0
|
||||||
repository: https://github.com/simolus3/moor
|
repository: https://github.com/simolus3/moor
|
||||||
homepage: https://drift.simonbinder.eu/
|
homepage: https://drift.simonbinder.eu/
|
||||||
issue_tracker: https://github.com/simolus3/moor/issues
|
issue_tracker: https://github.com/simolus3/moor/issues
|
||||||
|
@ -25,7 +25,7 @@ dependencies:
|
||||||
io: ^1.0.3
|
io: ^1.0.3
|
||||||
|
|
||||||
# Moor-specific analysis and apis
|
# Moor-specific analysis and apis
|
||||||
drift: '>=1.1.0-dev <1.2.0'
|
drift: '>=1.1.0 <1.2.0'
|
||||||
sqlite3: '>=0.1.6 <2.0.0'
|
sqlite3: '>=0.1.6 <2.0.0'
|
||||||
sqlparser: ^0.18.0
|
sqlparser: ^0.18.0
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
## 0.19.0-dev
|
## 0.19.0
|
||||||
|
|
||||||
- Support generated columns
|
- Support generated columns
|
||||||
|
- Support features introduced in sqlite version 3.37, most notably `STRICT` tables
|
||||||
|
|
||||||
## 0.18.0
|
## 0.18.0
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue