From 3e9392c10ded8cc3ae8d0f16a95507ae9df5bb9a Mon Sep 17 00:00:00 2001 From: Patrick Cloke Date: Mon, 27 Jul 2020 16:50:07 -0400 Subject: [PATCH] Prep for release of 0.13. --- CHANGELOG.rst | 6 ++++-- setup.py | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index a69ad87..ed92e10 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -3,13 +3,15 @@ Changelog ######### -next (xxx) -========== +0.13 (2020-07-27) +================= * [Enhancement] Officially support Django 3.1. * [Incompatible change] Drop support for Django < 2.2. * [Bugfix] ``explain()`` now passes through parameters to the underlying ``QuerySet`` instances. +* [Bugfix] Fixes compatibility issue with ``ModelChoiceField``. Report and + initial pull request from @jpic. [\#68](https://github.com/percipient/django-querysetsequence/pull/68) 0.12 (2019-12-20) ================= diff --git a/setup.py b/setup.py index 68b7d79..450b8f6 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ def long_description(): setup( name='django-querysetsequence', packages=find_packages(), - version='0.13dev', + version='0.13', description='Chain together multiple (disparate) QuerySets to treat them as a single QuerySet.', long_description=long_description(), author='Percipient Networks, LLC',