From 8f9f8ab4f7973b1869e430382e215c2da00a3fab Mon Sep 17 00:00:00 2001 From: Diederik van der Boor Date: Sun, 11 Sep 2016 21:34:37 +0200 Subject: [PATCH] Bump to 1.0.1 --- docs/changelog.rst | 6 ++++++ polymorphic/__init__.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 9d74887..e3d38a3 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,6 +1,12 @@ Changelog ========= +Version 1.0.1 (2016-09-11) +-------------------------- + +* Fixed compatibility with manager changes in Django 1.10.1 + + Version 1.0 (2016-09-02) ------------------------ diff --git a/polymorphic/__init__.py b/polymorphic/__init__.py index db6539c..1e85e95 100644 --- a/polymorphic/__init__.py +++ b/polymorphic/__init__.py @@ -7,7 +7,7 @@ This code and affiliated files are (C) by Bert Constantin and individual contrib Please see LICENSE and AUTHORS for more information. """ # See PEP 440 (https://www.python.org/dev/peps/pep-0440/) -__version__ = "1.0" +__version__ = "1.0.1" # Monkey-patch Django < 1.5 to allow ContentTypes for proxy models.