diff --git a/README.rst b/README.rst index f710c03..30605fe 100644 --- a/README.rst +++ b/README.rst @@ -45,6 +45,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 + * Django 1.11 (LTS) with Python 2.7, 3.4, 3.5, or 3.6 .. _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 b43168c..8e63182 100644 --- a/changelog.rst +++ b/changelog.rst @@ -1,6 +1,10 @@ Changelog --------- +1.4.5 (2017-08-22) +~~~~~~~~~~~~~~~~~~ +* Add Django 1.11 support + 1.4.4 (2016-06-27) ~~~~~~~~~~~~~~~~~~ * Add Django 1.10 support diff --git a/django_nose/__init__.py b/django_nose/__init__.py index 07d9bcb..beda667 100644 --- a/django_nose/__init__.py +++ b/django_nose/__init__.py @@ -8,5 +8,5 @@ assert NoseTestSuiteRunner assert FastFixtureTestCase -VERSION = (1, 4, 4) +VERSION = (1, 4, 5) __version__ = '.'.join(map(str, VERSION)) diff --git a/setup.py b/setup.py index 0c48cb4..d02e383 100644 --- a/setup.py +++ b/setup.py @@ -37,7 +37,7 @@ def get_long_description(title): setup( name='django-nose', - version='1.4.4', + version='1.4.5', description='Makes your Django tests simple and snappy', long_description=get_long_description('django-nose'), author='Jeff Balogh',