From 9f0fdd399c0fd6c592581cd19cfcf8839582c9ae Mon Sep 17 00:00:00 2001 From: John Whitlock Date: Mon, 27 Jun 2016 07:48:33 -0500 Subject: [PATCH] Update docs for 1.4.4 release --- README.rst | 1 + changelog.rst | 6 ++++++ django_nose/__init__.py | 2 +- 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/README.rst b/README.rst index da55ff8..047ab35 100644 --- a/README.rst +++ b/README.rst @@ -48,6 +48,7 @@ recommended. It follows the `Django's support policy`_, supporting: * Django 1.8 (LTS) with Python 2.7, 3.4, or 3.5 * Django 1.9 with Python 2.7, 3.4, or 3.5 + * Django 1.10 with Python 2.7, 3.4, or 3.5 .. _latest release: https://pypi.python.org/pypi/nose .. _Django's support policy: https://docs.djangoproject.com/en/1.8/internals/release-process/#supported-versions diff --git a/changelog.rst b/changelog.rst index 830a14f..1512d4e 100644 --- a/changelog.rst +++ b/changelog.rst @@ -1,6 +1,12 @@ Changelog --------- +1.4.4 (2016-06-27) +~~~~~~~~~~~~~~~~~~ +* Add Django 1.10 support +* Drop Django 1.4, 1.7, and Python 2.6 support +* Drop South support + 1.4.3 (2015-12-28) ~~~~~~~~~~~~~~~~~~ * Add Django 1.9 support diff --git a/django_nose/__init__.py b/django_nose/__init__.py index b7ef098..07d9bcb 100644 --- a/django_nose/__init__.py +++ b/django_nose/__init__.py @@ -8,5 +8,5 @@ assert NoseTestSuiteRunner assert FastFixtureTestCase -VERSION = (1, 4, 3) +VERSION = (1, 4, 4) __version__ = '.'.join(map(str, VERSION))