Skip to content

Commit

Permalink
Update the version number and the NEWS.
Browse files Browse the repository at this point in the history
  • Loading branch information
jszakmeister committed Aug 24, 2014
1 parent d6e11c2 commit 08d1342
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions NEWS
@@ -1,7 +1,8 @@
1.3.3
1.3.4
-----

1.3.3 fixes a simple issue with the reported version number.
1.3.4 fixes an issue with Python 3.4 and initializing a TestSuite
properly, along with a couple of other minor issues.

Also note that nose 1.x is in maintenance mode. We will not be
looking to add any features, and you should seriously consider
Expand Down
2 changes: 1 addition & 1 deletion nose/__init__.py
Expand Up @@ -4,7 +4,7 @@
from nose.tools import with_setup

__author__ = 'Jason Pellerin'
__versioninfo__ = (1, 3, 3)
__versioninfo__ = (1, 3, 4)
__version__ = '.'.join(map(str, __versioninfo__))

__all__ = [
Expand Down
2 changes: 1 addition & 1 deletion setup.py
@@ -1,7 +1,7 @@
import sys
import os

VERSION = '1.3.3'
VERSION = '1.3.4'
py_vers_tag = '-%s.%s' % sys.version_info[:2]

test_dirs = ['functional_tests', 'unit_tests', os.path.join('doc','doc_tests'), 'nose']
Expand Down

0 comments on commit 08d1342

Please sign in to comment.