File tree 4 files changed +11
-4
lines changed
4 files changed +11
-4
lines changed Original file line number Diff line number Diff line change 1
1
News
2
2
====
3
3
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
+
4
11
0.7.1
5
12
-----
6
13
7
- * Release date: TBD *
14
+ * Release date: 2017-05-22 *
8
15
9
16
* Bug fixes
10
17
* `` - `` wasn't being treated as a legal character
Original file line number Diff line number Diff line change 87
87
except ImportError :
88
88
pass
89
89
90
- __version__ = '0.7.1 '
90
+ __version__ = '0.7.2 '
91
91
92
92
# Pyparsing enablePackrat() can greatly speed up parsing, but problems have been seen in Python 3 in the past
93
93
pyparsing .ParserElement .enablePackrat ()
Original file line number Diff line number Diff line change 5
5
"""
6
6
from setuptools import setup
7
7
8
- VERSION = '0.7.1 '
8
+ VERSION = '0.7.2 '
9
9
DESCRIPTION = "Extra features for standard library's cmd module"
10
10
11
11
LONG_DESCRIPTION = """cmd2 is an enhancement to the standard library's cmd module for Python 2.7
Original file line number Diff line number Diff line change 22
22
23
23
24
24
def test_ver ():
25
- assert cmd2 .__version__ == '0.7.1 '
25
+ assert cmd2 .__version__ == '0.7.2 '
26
26
27
27
28
28
def test_base_help (base_app ):
You can’t perform that action at this time.
0 commit comments