From b1e6d931d5987e267c64efb5f96f95815b38c143 Mon Sep 17 00:00:00 2001 From: Simon Binder Date: Sun, 25 Aug 2019 22:44:28 +0200 Subject: [PATCH] Prepare release 1.7.1 --- moor/CHANGELOG.md | 5 +++++ moor/pubspec.yaml | 2 +- moor_generator/CHANGELOG.md | 1 + 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/moor/CHANGELOG.md b/moor/CHANGELOG.md index 629372ff..4bdcc249 100644 --- a/moor/CHANGELOG.md +++ b/moor/CHANGELOG.md @@ -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 - Support custom columns via type converters. See the [docs](https://moor.simonbinder.eu/type_converters) for details on how to use this feature. diff --git a/moor/pubspec.yaml b/moor/pubspec.yaml index 179b6f48..aaf3dd7c 100644 --- a/moor/pubspec.yaml +++ b/moor/pubspec.yaml @@ -1,6 +1,6 @@ name: moor 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 homepage: https://moor.simonbinder.eu/ issue_tracker: https://github.com/simolus3/moor/issues diff --git a/moor_generator/CHANGELOG.md b/moor_generator/CHANGELOG.md index 3008ebb3..0a40e255 100644 --- a/moor_generator/CHANGELOG.md +++ b/moor_generator/CHANGELOG.md @@ -1,6 +1,7 @@ ## 1.7.1 - 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. +- Support for moor version 1.7.1, which contains a fix for integer columns declared as primary key ## 1.7.0 - Support type converters that were introduced in moor 1.7