File tree Expand file tree Collapse file tree 5 files changed +8
-4
lines changed
Expand file tree Collapse file tree 5 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 1+ ## 0.8.6 (TBD)
2+ * Bug Fixes
3+ * TBD
4+
15## 0.8.5 (April 15, 2018)
26* Bug Fixes
37 * Fixed a bug with all argument decorators where the wrapped function wasn't returning a value and thus couldn't cause the cmd2 app to quit
Original file line number Diff line number Diff line change @@ -188,7 +188,7 @@ class RlType(Enum):
188188 pass
189189
190190
191- __version__ = '0.8.5 '
191+ __version__ = '0.8.6 '
192192
193193# Pyparsing enablePackrat() can greatly speed up parsing, but problems have been seen in Python 3 in the past
194194pyparsing .ParserElement .enablePackrat ()
Original file line number Diff line number Diff line change 6262# The short X.Y version.
6363version = '0.8'
6464# The full version, including alpha/beta/rc tags.
65- release = '0.8.5 '
65+ release = '0.8.6 '
6666
6767# The language for content autogenerated by Sphinx. Refer to documentation
6868# for a list of supported languages.
Original file line number Diff line number Diff line change 88import setuptools
99from setuptools import setup
1010
11- VERSION = '0.8.5 '
11+ VERSION = '0.8.6 '
1212DESCRIPTION = "cmd2 - a tool for building interactive command line applications in Python"
1313LONG_DESCRIPTION = """cmd2 is a tool for building interactive command line applications in Python. Its goal is to make
1414it quick and easy for developers to build feature-rich and user-friendly interactive command line applications. It
Original file line number Diff line number Diff line change 2626
2727
2828def test_ver ():
29- assert cmd2 .__version__ == '0.8.5 '
29+ assert cmd2 .__version__ == '0.8.6 '
3030
3131
3232def test_empty_statement (base_app ):
You can’t perform that action at this time.
0 commit comments