From c9b243a9a3ccf5e8a38c26ea47ab3b6bfb87f0b1 Mon Sep 17 00:00:00 2001 From: John Whitlock Date: Mon, 29 Jun 2015 15:54:36 -0500 Subject: [PATCH] Release v1.4.1 --- README.rst | 7 +++++++ django_nose/__init__.py | 2 +- setup.py | 4 ++-- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index 07b88de..eb64657 100644 --- a/README.rst +++ b/README.rst @@ -318,6 +318,13 @@ django-nose does not support Django 1.0. Recent Version History ---------------------- +1.4.1 (2015-06-29) + * Fix version number (ezarowny) + * Fix choice options, unbreaking nose-cover (aamirtharaj-rpx, jwhitlock) + * Support 1.8 app loading system (dgladkov) + * Support non-ASCII file names (singingwolfboy) + * Better PEP8'd assertion names (roganov) + 1.4 (2015-04-23) * Django 1.8 support (timc3, adepue, jwhitlock) * Support --testrunner option (st3lk) diff --git a/django_nose/__init__.py b/django_nose/__init__.py index d5f6894..01be67a 100644 --- a/django_nose/__init__.py +++ b/django_nose/__init__.py @@ -1,7 +1,7 @@ # coding: utf-8 from __future__ import unicode_literals -VERSION = (1, 4, 0) +VERSION = (1, 4, 1) __version__ = '.'.join(map(str, VERSION)) from django_nose.runner import * diff --git a/setup.py b/setup.py index cc6ff59..9d73355 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( name='django-nose', - version='1.4', + version='1.4.1', description='Makes your Django tests simple and snappy', long_description=open(os.path.join(ROOT, 'README.rst')).read(), author='Jeff Balogh', @@ -26,7 +26,7 @@ # we need FixtureBundlingPlugin declared as an entrypoint anyway, since you # need to be using django-nose to find the it useful, and django-nose knows # about it intrinsically. - #entry_points=""" + # entry_points=""" # [nose.plugins.0.10] # fixture_bundler = django_nose.fixture_bundling:FixtureBundlingPlugin # """,