From eca356f1c9ea9c8950d30d27f8d562ca0f6d2ffb Mon Sep 17 00:00:00 2001 From: John Whitlock Date: Wed, 7 Oct 2015 10:13:30 -0500 Subject: [PATCH] Release v1.4.2 --- MANIFEST.in | 2 +- changelog.rst | 4 ++-- django_nose/__init__.py | 2 +- setup.py | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index 9f931bb..3116c01 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,4 +1,3 @@ -include .coveragerc include AUTHORS.rst include CONTRIBUTING.rst include LICENSE @@ -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 diff --git a/changelog.rst b/changelog.rst index 2903a05..b9fea48 100644 --- a/changelog.rst +++ b/changelog.rst @@ -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) diff --git a/django_nose/__init__.py b/django_nose/__init__.py index 06be78f..3b8be08 100644 --- a/django_nose/__init__.py +++ b/django_nose/__init__.py @@ -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. diff --git a/setup.py b/setup.py index 3e8feae..e62589b 100644 --- a/setup.py +++ b/setup.py @@ -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', @@ -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' ] )