Skip to content

Commit

Permalink
3.8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
coleifer committed Jan 17, 2019
1 parent 6e31f3d commit f6ceb05
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ https://github.com/coleifer/peewee/releases

## master

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

## 3.8.2

**Backwards-incompatible changes**

* The default row-type for `INSERT` queries executed with a non-default
Expand All @@ -21,14 +25,20 @@ https://github.com/coleifer/peewee/releases
the 3.8.0 release, it was broken and resulted in incorrect SQL for UPDATE
queries, so now it is removed.

**New features**

* Added `playhouse.shortcuts.ReconnectMixin`, which can be used to implement
automatic reconnect under certain error conditions (notably the MySQL error
2006 - server has gone away).

**Bugfixes**

* Fix SQL generation bug when using an inline window function in the `ORDER BY`
clause of a query.
* Fix possible zero-division in user-defined implementation of BM25 ranking
algorithm for SQLite full-text search.

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

## 3.8.1

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


__version__ = '3.8.1'
__version__ = '3.8.2'
__all__ = [
'AsIs',
'AutoField',
Expand Down

0 comments on commit f6ceb05

Please sign in to comment.