Skip to content

Commit

Permalink
Release v1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jwhitlock committed Jun 29, 2015
1 parent eac95aa commit c9b243a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion django_nose/__init__.py
Original file line number Diff line number Diff line change
@@ -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 *
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand All @@ -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
# """,
Expand Down

0 comments on commit c9b243a

Please sign in to comment.