Skip to content

Commit

Permalink
3.15.2
Browse files Browse the repository at this point in the history
  • Loading branch information
coleifer committed Aug 26, 2022
1 parent 4e12d7f commit bc150f7
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,18 @@ https://github.com/coleifer/peewee/releases

## master

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

## 3.15.2

* Fix bug where field-specific conversions were being applied to the pattern
used for LIKE / ILIKE operations. Refs #2609
* Fix possible infinite loop when accidentally invoking the `__iter__` method
on certain `Column` subclasses. Refs #2606
* Add new helper for specifying which Model a particular selected column-like
should be bound to, in queries with joins that select from multiple sources.

[View commits](https://github.com/coleifer/peewee/compare/3.15.1...3.15.2)

## 3.15.1

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


__version__ = '3.15.1'
__version__ = '3.15.2'
__all__ = [
'AnyField',
'AsIs',
Expand Down

0 comments on commit bc150f7

Please sign in to comment.