From dcdf7cb2a9d97c04eb8e13e3e2c949b2d64ebcd4 Mon Sep 17 00:00:00 2001 From: Charles Leifer Date: Thu, 5 Dec 2019 19:33:17 -0600 Subject: [PATCH] 3.13.0 --- CHANGELOG.md | 6 +++++- peewee.py | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7638f019b..e7cbd8adb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ https://github.com/coleifer/peewee/releases ## master +[View commits](https://github.com/coleifer/peewee/compare/3.13.0...master) + +## 3.13.0 + ### CockroachDB support added This will be a notable release as it adds support for @@ -30,7 +34,7 @@ SQL database. * Fix non-deterministic join ordering issue when using the `filter()` API across several tables (#2063). -[View commits](https://github.com/coleifer/peewee/compare/3.12.0...master) +[View commits](https://github.com/coleifer/peewee/compare/3.12.0...3.13.0) ## 3.12.0 diff --git a/peewee.py b/peewee.py index a9d9a62cf..8cfcbb57a 100644 --- a/peewee.py +++ b/peewee.py @@ -65,7 +65,7 @@ mysql = None -__version__ = '3.12.0' +__version__ = '3.13.0' __all__ = [ 'AsIs', 'AutoField',