Skip to content

Commit e18ee68

Browse files
committed
Bumping version to 0.7.2
1 parent c2ceb24 commit e18ee68

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

CHANGES.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,17 @@
11
News
22
====
33

4+
0.7.2
5+
-----
6+
7+
*Release date: 2017-05-22*
8+
9+
* Added a MANIFEST.ini file to make sure a few extra files get included in the PyPI source distribution
10+
411
0.7.1
512
-----
613

7-
*Release date: TBD*
14+
*Release date: 2017-05-22*
815

916
* Bug fixes
1017
* ``-`` wasn't being treated as a legal character

cmd2.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
8787
except ImportError:
8888
pass
8989

90-
__version__ = '0.7.1'
90+
__version__ = '0.7.2'
9191

9292
# Pyparsing enablePackrat() can greatly speed up parsing, but problems have been seen in Python 3 in the past
9393
pyparsing.ParserElement.enablePackrat()

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"""
66
from setuptools import setup
77

8-
VERSION = '0.7.1'
8+
VERSION = '0.7.2'
99
DESCRIPTION = "Extra features for standard library's cmd module"
1010

1111
LONG_DESCRIPTION = """cmd2 is an enhancement to the standard library's cmd module for Python 2.7

tests/test_cmd2.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323

2424
def test_ver():
25-
assert cmd2.__version__ == '0.7.1'
25+
assert cmd2.__version__ == '0.7.2'
2626

2727

2828
def test_base_help(base_app):

0 commit comments

Comments
 (0)