diff --git a/AUTHORS.rst b/AUTHORS.rst index b16ca27..635c195 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -56,4 +56,6 @@ These non-maintainers have contributed code to a django-nose release: * Stephen Burrows (`melinath `_) * Sverre Johansen (`sverrejoh `_) * Tim Child (`timc3 `_) +* Walter Doekes (`wdoekes `_) +* Will Kahn-Greene (`willkg `_) * Yegor Roganov (`roganov `_) diff --git a/README.rst b/README.rst index 3b737d2..3429de8 100644 --- a/README.rst +++ b/README.rst @@ -49,7 +49,7 @@ recommended. It follows the `Django's support policy`_, supporting: * Django 1.4 (LTS) with Python 2.6 and 2.7 * Django 1.7 with Python 2.7 or 3.4 * Django 1.8 (LTS) with Python 2.7 or 3.4 - * Django 1.9 (pre-release) + * Django 1.9 with Python 2.7 or 3.4 .. _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 b9fea48..830a14f 100644 --- a/changelog.rst +++ b/changelog.rst @@ -1,6 +1,17 @@ Changelog --------- +1.4.3 (2015-12-28) +~~~~~~~~~~~~~~~~~~ +* Add Django 1.9 support +* Support long options without equals signs, such as "--attr selected" +* Support nose plugins using callback options +* Support nose options without default values (jsatt) +* Remove Django from install dependencies, to avoid accidental upgrades + (jsocol, willkg) +* Setting REUSE_DB to an empty value now disables REUSE_DB, instead of + enabling it (wdoekes) + 1.4.2 (2015-10-07) ~~~~~~~~~~~~~~~~~~ * Warn against using REUSE_DB=1 and FastFixtureTestCase in docs diff --git a/django_nose/__init__.py b/django_nose/__init__.py index 3b8be08..d18f29c 100644 --- a/django_nose/__init__.py +++ b/django_nose/__init__.py @@ -7,7 +7,7 @@ assert BasicNoseRunner assert FastFixtureTestCase -VERSION = (1, 4, 2) +VERSION = (1, 4, 3) __version__ = '.'.join(map(str, VERSION)) # Django < 1.2 compatibility. diff --git a/setup.py b/setup.py index 1ecb1b5..2b9f8fc 100644 --- a/setup.py +++ b/setup.py @@ -36,7 +36,7 @@ def get_long_description(title): setup( name='django-nose', - version='1.4.2', + version='1.4.3', description='Makes your Django tests simple and snappy', long_description=get_long_description('django-nose'), author='Jeff Balogh',