From 0842c18914a1fe69efd0792ae446a0f319051215 Mon Sep 17 00:00:00 2001 From: Charles Leifer Date: Thu, 23 Apr 2020 19:35:58 -0500 Subject: [PATCH] 3.13.3 --- CHANGELOG.md | 15 ++++++++++++++- peewee.py | 2 +- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 43043aeb7..a3d913f3e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,20 @@ https://github.com/coleifer/peewee/releases ## master -[View commits](https://github.com/coleifer/peewee/compare/3.13.2...master) +[View commits](https://github.com/coleifer/peewee/compare/3.13.3...master) + +## 3.13.3 + +* Allow arbitrary keyword arguments to be passed to `DataSet` constructor, + which are then passed to the instrospector. +* Allow scalar subqueries to be compared using numeric operands. +* Fix `bulk_create()` when model being inserted uses FK identifiers. +* Fix `bulk_update()` so that PK values are properly coerced to the right + data-type (e.g. UUIDs to strings for Sqlite). +* Allow array indices to be used as dict keys, e.g. for the purposes of + updating a single array index value. + +[View commits](https://github.com/coleifer/peewee/compare/3.13.2...3.13.3) ## 3.13.2 diff --git a/peewee.py b/peewee.py index ba651c31d..1ed95b034 100644 --- a/peewee.py +++ b/peewee.py @@ -65,7 +65,7 @@ mysql = None -__version__ = '3.13.2' +__version__ = '3.13.3' __all__ = [ 'AsIs', 'AutoField',