diff --git a/CHANGELOG.md b/CHANGELOG.md index fb85ad579..19d9bc923 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,19 @@ releases, visit GitHub: https://github.com/coleifer/peewee/releases +## 3.3.3 + +* More efficient implementation of model dependency-graph generation. Improves + performance of recursively deleting related objects by omitting unnecessary + subqueries. +* Added `union()`, `union_all()`, `intersect()` and `except_()` to the + `Model`-specific query implementations. This was an oversight that should + have been patched in 3.3.2, but is fixed in 3.3.3. +* Major cleanup to test runner and standardized test skipping logic to + integrate with standard-library `unittest` conventions. + +[View commits](https://github.com/coleifer/peewee/compare/3.3.2...3.3.3) + ## 3.3.2 * Add methods for `union()`, `union_all`, `intersect()` and `except_()`. diff --git a/peewee.py b/peewee.py index f96d2d9e2..8ce61af62 100644 --- a/peewee.py +++ b/peewee.py @@ -57,7 +57,7 @@ mysql = None -__version__ = '3.3.2' +__version__ = '3.3.3' __all__ = [ 'AsIs', 'AutoField',