Skip to content

Commit

Permalink
3.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
coleifer committed Jul 3, 2018
1 parent 89f563d commit 3860f26
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,18 @@ https://github.com/coleifer/peewee/releases

## master

[View commits](https://github.com/coleifer/peewee/compare/3.5.2...master)

## 3.5.2

* New guide to using [window functions in Peewee](http://docs.peewee-orm.com/en/latest/peewee/querying.html#window-functions).
* New and improved table name auto-generation. This feature is not backwards
compatible, so it is **disabled by default**. To enable, set
`legacy_table_names=False` in your model's `Meta` options. For more details,
see [table names](http://docs.peewee-orm.com/en/latest/peewee/models.html#table_names)
documentation.
* Allow passing single fields/columns to window function `order_by` and
`partition_by` arguments.
* Support for `FILTER (WHERE...)` clauses with window functions and aggregates.
* Added `IdentityField` class suitable for use with Postgres 10's new identity
column type. It can be used anywhere `AutoField` or `BigAutoField` was being
Expand All @@ -21,7 +27,7 @@ https://github.com/coleifer/peewee/releases
* Fixed obscure bug when using `prefetch()` and `ModelAlias` to populate a
back-reference related model.

[View commits](https://github.com/coleifer/peewee/compare/3.5.1...master)
[View commits](https://github.com/coleifer/peewee/compare/3.5.1...3.5.2)

## 3.5.1

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.5.1'
__version__ = '3.5.2'
__all__ = [
'AsIs',
'AutoField',
Expand Down

0 comments on commit 3860f26

Please sign in to comment.