diff --git a/CHANGELOG.md b/CHANGELOG.md index a0795c6e6..e6b0a167d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,21 @@ https://github.com/coleifer/peewee/releases ## master -[View commits](https://github.com/coleifer/peewee/compare/3.9.4...master) +[View commits](https://github.com/coleifer/peewee/compare/3.9.5...master) + +## 3.9.5 + +* Added small helper for setting timezone when using Postgres. +* Improved SQL generation for `VALUES` clause. +* Support passing resolution to `TimestampField` as a power-of-10. +* Small improvements to `INSERT` queries when the primary-key is not an + auto-incrementing integer, but is generated by the database server (eg uuid). +* Cleanups to virtual table implementation and python-to-sqlite value + conversions. +* Fixed bug related to binding previously-unbound models to a database using a + context manager, #1913. + +[View commits](https://github.com/coleifer/peewee/compare/3.9.4...3.9.5) ## 3.9.4 diff --git a/peewee.py b/peewee.py index f0086ba31..9c2c29ebe 100644 --- a/peewee.py +++ b/peewee.py @@ -65,7 +65,7 @@ mysql = None -__version__ = '3.9.4' +__version__ = '3.9.5' __all__ = [ 'AsIs', 'AutoField',