Skip to content

Commit

Permalink
3.17.4
Browse files Browse the repository at this point in the history
  • Loading branch information
coleifer committed May 10, 2024
1 parent 41bc6eb commit 9772a69
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
11 changes: 9 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,22 @@ https://github.com/coleifer/peewee/releases

## master

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

## 3.17.4

* Fix bug that could occur when using CASE inside a function, and one or more
of the CASE clauses consisted of a subquery. Refs #2873.
new fix in #2872 for regression in truthiness of cursor.
* Fix bug in the conversion of TIMESTAMP type in Sqlite on Python 3.12+.
* Fix for hybrid properties on subclasses when aliased (#2888).
* Many fixes for SqliteQueueDatabase (#2874, #2876, #2877).

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

## 3.17.3

* Better fix for #2871 (extraneous queries when coercing query to list), and
new fix in #2872 for regression in truthiness of cursor.

[View commits](https://github.com/coleifer/peewee/compare/3.17.2...3.17.3)

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


__version__ = '3.17.3'
__version__ = '3.17.4'
__all__ = [
'AnyField',
'AsIs',
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
[build-system]
requires = ["setuptools", "wheel"]
build-backend="setuptools.build_meta"

0 comments on commit 9772a69

Please sign in to comment.