Skip to content

Commit

Permalink
3.14.1
Browse files Browse the repository at this point in the history
  • Loading branch information
coleifer committed Feb 7, 2021
1 parent 7e68c78 commit 3f66b5d
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
18 changes: 17 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,23 @@ https://github.com/coleifer/peewee/releases

## master

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

## 3.14.1

This release contains primarily bugfixes.

* Properly delegate to a foreign-key field's `db_value()` function when
converting model instances. #2304.
* Strip quote marks and parentheses from column names returned by sqlite
cursor when a function-call is projected without an alias. #2305.
* Fix `DataSet.create_index()` method, #2319.
* Fix column-to-model mapping in model-select from subquery with joins, #2320.
* Improvements to foreign-key lazy-loading thanks @conqp, #2328.
* Preserve and handle `CHECK()` constraints in Sqlite migrator, #2343.
* Add `stddev` aggregate function to collection of sqlite user-defined funcs.

[View commits](https://github.com/coleifer/peewee/compare/3.14.0...3.14.1)

## 3.14.0

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

0 comments on commit 3f66b5d

Please sign in to comment.