Skip to content

Commit b3a5050

Browse files
committed
Bump version and update changelog.
1 parent 9d8bfcd commit b3a5050

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
1.3.7
2+
3+
- Fix loading packages from capitalised package on Windows
4+
Patch by Thomas Kluyver
5+
16
1.3.6
27

38
- Re-release of 1.3.5 with wheels fixed.

nose/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from nose.tools import with_setup
55

66
__author__ = 'Jason Pellerin'
7-
__versioninfo__ = (1, 3, 6)
7+
__versioninfo__ = (1, 3, 7)
88
__version__ = '.'.join(map(str, __versioninfo__))
99

1010
__all__ = [

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import sys
22
import os
33

4-
VERSION = '1.3.6'
4+
VERSION = '1.3.7'
55
py_vers_tag = '-%s.%s' % sys.version_info[:2]
66

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

0 commit comments

Comments
 (0)