From b3a505071d6de526d470218d310019d04280b69c Mon Sep 17 00:00:00 2001 From: John Szakmeister Date: Tue, 2 Jun 2015 04:44:10 -0400 Subject: Bump version and update changelog. --- CHANGELOG | 5 +++++ nose/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 251018a..fe2ed89 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,8 @@ +1.3.7 + +- Fix loading packages from capitalised package on Windows + Patch by Thomas Kluyver + 1.3.6 - Re-release of 1.3.5 with wheels fixed. diff --git a/nose/__init__.py b/nose/__init__.py index bc51e89..1ae1362 100644 --- a/nose/__init__.py +++ b/nose/__init__.py @@ -4,7 +4,7 @@ from nose.exc import SkipTest, DeprecatedTest from nose.tools import with_setup __author__ = 'Jason Pellerin' -__versioninfo__ = (1, 3, 6) +__versioninfo__ = (1, 3, 7) __version__ = '.'.join(map(str, __versioninfo__)) __all__ = [ diff --git a/setup.py b/setup.py index 5695444..a2091c0 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ import sys import os -VERSION = '1.3.6' +VERSION = '1.3.7' py_vers_tag = '-%s.%s' % sys.version_info[:2] test_dirs = ['functional_tests', 'unit_tests', os.path.join('doc','doc_tests'), 'nose'] -- cgit v1.2.1