mirror of https://github.com/AMT-Cheif/drift.git
Merge branch 'master' into develop
This commit is contained in:
commit
b6d5f7eaa8
|
@ -28,6 +28,9 @@
|
||||||
- __Breaking__: Remove the type parameter from `Insertable.createCompanion` (it was declared as an
|
- __Breaking__: Remove the type parameter from `Insertable.createCompanion` (it was declared as an
|
||||||
internal method)
|
internal method)
|
||||||
|
|
||||||
|
__2.0.1+1__: Fix crash when `customStatement` is the first operation used on a database
|
||||||
|
([#199](https://github.com/simolus3/moor/issues/199))
|
||||||
|
|
||||||
## 2.0.0
|
## 2.0.0
|
||||||
This is the first major update after the initial release and moor and we have a lot to cover:
|
This is the first major update after the initial release and moor and we have a lot to cover:
|
||||||
`.moor` files can now have their own imports and queries, you can embed Dart in sql queries
|
`.moor` files can now have their own imports and queries, you can embed Dart in sql queries
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
name: moor
|
name: moor
|
||||||
description: Moor is a safe and reactive persistence library for Dart applications
|
description: Moor is a safe and reactive persistence library for Dart applications
|
||||||
version: 2.0.1
|
version: 2.0.1+1
|
||||||
repository: https://github.com/simolus3/moor
|
repository: https://github.com/simolus3/moor
|
||||||
homepage: https://moor.simonbinder.eu/
|
homepage: https://moor.simonbinder.eu/
|
||||||
issue_tracker: https://github.com/simolus3/moor/issues
|
issue_tracker: https://github.com/simolus3/moor/issues
|
||||||
|
@ -27,8 +27,8 @@ dev_dependencies:
|
||||||
test: ^1.9.0
|
test: ^1.9.0
|
||||||
mockito: ^4.1.0
|
mockito: ^4.1.0
|
||||||
|
|
||||||
dependency_overrides:
|
#dependency_overrides:
|
||||||
moor_generator:
|
# moor_generator:
|
||||||
path: ../moor_generator
|
# path: ../moor_generator
|
||||||
sqlparser:
|
# sqlparser:
|
||||||
path: ../sqlparser
|
# path: ../sqlparser
|
Loading…
Reference in New Issue