Prepare release 1.7.1

This commit is contained in:
Simon Binder 2019-08-25 22:44:28 +02:00
parent 2b40272774
commit b1e6d931d5
No known key found for this signature in database
GPG Key ID: 7891917E4147B8C0
3 changed files with 7 additions and 1 deletions

View File

@ -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.

View File

@ -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

View File

@ -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