mirror of https://github.com/AMT-Cheif/drift.git
Release 1.7.2 of moor
Fixed a bug where databases where not opened properly.
This commit is contained in:
parent
81986d2010
commit
6993b26532
|
@ -1,3 +1,7 @@
|
|||
## 1.7.2
|
||||
- Fixed a race condition that caused the database to be opened multiple times on slower devices.
|
||||
This problem was introduced in `1.7.0` and was causing problems during migrations.
|
||||
|
||||
## 1.7.1
|
||||
- Better documentation on `getSingle` and `watchSingle` for queries.
|
||||
- Fix `INTEGER NOT NULL PRIMARY KEY` wrongly requiring a value during insert (this never affected
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
name: moor
|
||||
description: Moor is a safe and reactive persistence library for Dart applications
|
||||
version: 1.7.1
|
||||
version: 1.7.2
|
||||
repository: https://github.com/simolus3/moor
|
||||
homepage: https://moor.simonbinder.eu/
|
||||
issue_tracker: https://github.com/simolus3/moor/issues
|
||||
|
@ -18,7 +18,7 @@ dependencies:
|
|||
pedantic: ^1.0.0
|
||||
|
||||
dev_dependencies:
|
||||
moor_generator: ^1.6.0
|
||||
moor_generator: ^1.7.0
|
||||
build_runner: '>=1.3.0 <2.0.0'
|
||||
build_test: ^0.10.8
|
||||
test: ^1.6.4
|
||||
|
|
Loading…
Reference in New Issue