From 1d3cfd4febe0b60b2d149937096f36b70b617b92 Mon Sep 17 00:00:00 2001 From: John Whitlock Date: Thu, 23 Apr 2015 16:06:43 -0500 Subject: [PATCH] Version 1.4 --- .gitignore | 3 ++- README.rst | 4 ++++ setup.py | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index ce2f23b..a0b38a2 100644 --- a/.gitignore +++ b/.gitignore @@ -3,4 +3,5 @@ *~ *.egg-info .DS_Store - +build/ +dist/ diff --git a/README.rst b/README.rst index e7b18b2..07b88de 100644 --- a/README.rst +++ b/README.rst @@ -318,6 +318,10 @@ django-nose does not support Django 1.0. Recent Version History ---------------------- +1.4 (2015-04-23) + * Django 1.8 support (timc3, adepue, jwhitlock) + * Support --testrunner option (st3lk) + * Fix REUSE_DB second run in py3k (edrmp) 1.3 (2014-12-05) * Django 1.6 and 1.7 support (conrado, co3k, Nepherhotep, mbertheau) diff --git a/setup.py b/setup.py index 77b8103..cc6ff59 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( name='django-nose', - version='1.3', + version='1.4', description='Makes your Django tests simple and snappy', long_description=open(os.path.join(ROOT, 'README.rst')).read(), author='Jeff Balogh',