Skip to content

Commit

Permalink
Release 1.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jwhitlock committed Dec 28, 2015
1 parent 65a1d5d commit b94199d
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 3 deletions.
2 changes: 2 additions & 0 deletions AUTHORS.rst
Expand Up @@ -56,4 +56,6 @@ These non-maintainers have contributed code to a django-nose release:
* Stephen Burrows (`melinath <https://github.com/melinath>`_)
* Sverre Johansen (`sverrejoh <https://github.com/sverrejoh>`_)
* Tim Child (`timc3 <https://github.com/timc3>`_)
* Walter Doekes (`wdoekes <https://github.com/wdoekes>`_)
* Will Kahn-Greene (`willkg <https://github.com/willkg>`_)
* Yegor Roganov (`roganov <https://github.com/roganov>`_)
2 changes: 1 addition & 1 deletion README.rst
Expand Up @@ -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
Expand Down
11 changes: 11 additions & 0 deletions 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
Expand Down
2 changes: 1 addition & 1 deletion django_nose/__init__.py
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -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',
Expand Down

0 comments on commit b94199d

Please sign in to comment.