Skip to content

Commit c9b243a

Browse files
committed
Release v1.4.1
1 parent eac95aa commit c9b243a

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

README.rst

+7
Original file line numberDiff line numberDiff line change
@@ -318,6 +318,13 @@ django-nose does not support Django 1.0.
318318

319319
Recent Version History
320320
----------------------
321+
1.4.1 (2015-06-29)
322+
* Fix version number (ezarowny)
323+
* Fix choice options, unbreaking nose-cover (aamirtharaj-rpx, jwhitlock)
324+
* Support 1.8 app loading system (dgladkov)
325+
* Support non-ASCII file names (singingwolfboy)
326+
* Better PEP8'd assertion names (roganov)
327+
321328
1.4 (2015-04-23)
322329
* Django 1.8 support (timc3, adepue, jwhitlock)
323330
* Support --testrunner option (st3lk)

django_nose/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# coding: utf-8
22
from __future__ import unicode_literals
33

4-
VERSION = (1, 4, 0)
4+
VERSION = (1, 4, 1)
55
__version__ = '.'.join(map(str, VERSION))
66

77
from django_nose.runner import *

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
setup(
88
name='django-nose',
9-
version='1.4',
9+
version='1.4.1',
1010
description='Makes your Django tests simple and snappy',
1111
long_description=open(os.path.join(ROOT, 'README.rst')).read(),
1212
author='Jeff Balogh',
@@ -26,7 +26,7 @@
2626
# we need FixtureBundlingPlugin declared as an entrypoint anyway, since you
2727
# need to be using django-nose to find the it useful, and django-nose knows
2828
# about it intrinsically.
29-
#entry_points="""
29+
# entry_points="""
3030
# [nose.plugins.0.10]
3131
# fixture_bundler = django_nose.fixture_bundling:FixtureBundlingPlugin
3232
# """,

0 commit comments

Comments
 (0)