Skip to content

Commit

Permalink
3.9.3
Browse files Browse the repository at this point in the history
  • Loading branch information
coleifer committed Mar 23, 2019
1 parent 8b42987 commit 3e00b63
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
8 changes: 7 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.9.3...master)

## 3.9.3

* Added cross-database support for `NULLS FIRST/LAST` when specifying the
ordering for a query. Previously this was only supported for Postgres. Peewee
will now generate an equivalent `CASE` statement for Sqlite and MySQL.
Expand All @@ -18,9 +22,11 @@ https://github.com/coleifer/peewee/releases
to work in some situations, but could lead to subtle bugs. The new API is
`Model._meta.set_table_name()`.
* Enhanced helpers for working with Peewee interactively, [see doc](http://docs.peewee-orm.com/en/latest/peewee/interactive.html).
* Fix cache invalidation bug in `DataSet` that was originally reported on the
sqlite-web project.
* New example script implementing a [hexastore](https://github.com/coleifer/peewee/blob/master/examples/hexastore.py).

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

## 3.9.1 and 3.9.2

Expand Down
2 changes: 1 addition & 1 deletion docs/peewee/api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1713,7 +1713,7 @@ Query-builder
conflict resolution. Currently only supported by Postgres.


.. py:class:: EXCLUDED()
.. py:class:: EXCLUDED
Helper object that exposes the ``EXCLUDED`` namespace that is used with
``INSERT ... ON CONFLICT`` to reference values in the conflicting data.
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.9.2'
__version__ = '3.9.3'
__all__ = [
'AsIs',
'AutoField',
Expand Down

0 comments on commit 3e00b63

Please sign in to comment.