Skip to content

Commit

Permalink
3.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
coleifer committed Apr 18, 2018
1 parent 80a2048 commit 3c6dbbb
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,18 @@ releases, visit GitHub:

https://github.com/coleifer/peewee/releases

## 3.2.4

* Smarter handling of model-graph when dealing with compound queries (union,
intersect, etc). #1579.
* If the same column-name is selected multiple times, first value wins. #1579.
* If `ModelSelect.switch()` is called without any arguments, default to the
query's model. Refs #1573.
* Fix issue where cloning a ModelSelect query did not result in the joins being
cloned. #1576.

[View commits](https://github.com/coleifer/peewee/compare/3.2.3...3.2.4)

## 3.2.3

* `pwiz` tool will capture column defaults defined as part of the table schema.
Expand Down
2 changes: 1 addition & 1 deletion peewee.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
mysql = None


__version__ = '3.2.3'
__version__ = '3.2.4'
__all__ = [
'AsIs',
'AutoField',
Expand Down

0 comments on commit 3c6dbbb

Please sign in to comment.