Skip to content

Commit

Permalink
Release v1.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jwhitlock committed Oct 7, 2015
1 parent 7a33093 commit eca356f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
include .coveragerc
include AUTHORS.rst
include CONTRIBUTING.rst
include LICENSE
Expand All @@ -8,6 +7,7 @@ include changelog.rst
include contribute.json
include manage.py
include requirements.txt
include requirements-rtd.txt
include runtests.sh

recursive-include docs Makefile conf.py *.rst make.bat .keep
Expand Down
4 changes: 2 additions & 2 deletions changelog.rst
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Changelog
---------

*Unreleased*
~~~~~~~~~~~~
1.4.2 (2015-10-07)
~~~~~~~~~~~~~~~~~~
* Warn against using REUSE_DB=1 and FastFixtureTestCase in docs
* REUSE_DB=1 uses new transaction management in Django 1.7, 1.8 (scottsexton)
* Try to avoid accidentally using production database with REUSE_DB=1 (alexjg, eroninjapan)
Expand Down
2 changes: 1 addition & 1 deletion django_nose/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
assert BasicNoseRunner
assert FastFixtureTestCase

VERSION = (1, 4, 1)
VERSION = (1, 4, 2)
__version__ = '.'.join(map(str, VERSION))

# Django < 1.2 compatibility.
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def get_long_description(title):

setup(
name='django-nose',
version='1.4.1',
version='1.4.2',
description='Makes your Django tests simple and snappy',
long_description=get_long_description('django-nose'),
author='Jeff Balogh',
Expand Down Expand Up @@ -74,8 +74,8 @@ def get_long_description(title):
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development :: Testing'
]
)

0 comments on commit eca356f

Please sign in to comment.