Skip to content

Commit

Permalink
3.13.3
Browse files Browse the repository at this point in the history
  • Loading branch information
coleifer committed Apr 24, 2020
1 parent 7eb7498 commit 0842c18
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
15 changes: 14 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion peewee.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
mysql = None


__version__ = '3.13.2'
__version__ = '3.13.3'
__all__ = [
'AsIs',
'AutoField',
Expand Down

0 comments on commit 0842c18

Please sign in to comment.