mirror of https://github.com/AMT-Cheif/drift.git
Prepare release 1.7.1
This commit is contained in:
parent
2b40272774
commit
b1e6d931d5
|
@ -1,3 +1,8 @@
|
||||||
|
## 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
|
||||||
|
`AUTOINCREMENT` columns, and only affects columns declared in a `.moor` file)
|
||||||
|
|
||||||
## 1.7.0
|
## 1.7.0
|
||||||
- Support custom columns via type converters. See the [docs](https://moor.simonbinder.eu/type_converters)
|
- Support custom columns via type converters. See the [docs](https://moor.simonbinder.eu/type_converters)
|
||||||
for details on how to use this feature.
|
for details on how to use this feature.
|
||||||
|
|
|
@ -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: 1.7.0
|
version: 1.7.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
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
## 1.7.1
|
## 1.7.1
|
||||||
- Drop support for analyzer versions `<0.36.4`. They weren't supported in version 1.7.0 either, but
|
- Drop support for analyzer versions `<0.36.4`. They weren't supported in version 1.7.0 either, but
|
||||||
the `pubspec.yaml` did not specify this correctly.
|
the `pubspec.yaml` did not specify this correctly.
|
||||||
|
- Support for moor version 1.7.1, which contains a fix for integer columns declared as primary key
|
||||||
|
|
||||||
## 1.7.0
|
## 1.7.0
|
||||||
- Support type converters that were introduced in moor 1.7
|
- Support type converters that were introduced in moor 1.7
|
||||||
|
|
Loading…
Reference in New Issue