File tree Expand file tree Collapse file tree 5 files changed +13
-8
lines changed Expand file tree Collapse file tree 5 files changed +13
-8
lines changed Original file line number Diff line number Diff line change 1+ ## 0.8.7 (TBD)
2+ * Bug Fixes
3+ * Make sure pip installs version 0.8.x if you have python 2.7
4+
15## 0.8.6 (May 27, 2018)
26* Bug Fixes
3- * Commands using the @with_argparser_and_unknown_args were not correctly recognized when tab completing
7+ * Commands using the @with_argparser_and_unknown_args were not correctly recognized when tab completing
48 * Fixed issue where completion display function was overwritten when a submenu quits
59 * Fixed `` AttributeError `` on Windows when running a `` select `` command cause by ** pyreadline** not implementing `` remove_history_item ``
610* Enhancements
Original file line number Diff line number Diff line change @@ -229,7 +229,7 @@ def pyreadline_remove_history_item(pos):
229229 pass
230230
231231
232- __version__ = '0.8.6 '
232+ __version__ = '0.8.7-rc1 '
233233
234234# Pyparsing enablePackrat() can greatly speed up parsing, but problems have been seen in Python 3 in the past
235235pyparsing .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.6 '
65+ release = '0.8.7-rc1 '
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.6 '
11+ VERSION = '0.8.7-rc1 '
1212DESCRIPTION = "cmd2 - a tool for building interactive command line applications in Python"
13- LONG_DESCRIPTION = """cmd2 is a tool for building interactive command line applications in Python. Its goal is to make
14- it quick and easy for developers to build feature-rich and user-friendly interactive command line applications. It
15- provides a simple API which is an extension of Python's built-in cmd module. cmd2 provides a wealth of features on top
13+ LONG_DESCRIPTION = """cmd2 is a tool for building interactive command line applications in Python. Its goal is to make
14+ it quick and easy for developers to build feature-rich and user-friendly interactive command line applications. It
15+ provides a simple API which is an extension of Python's built-in cmd module. cmd2 provides a wealth of features on top
1616of cmd to make your life easier and eliminates much of the boilerplate code which would be necessary when using cmd.
1717
1818The latest documentation for cmd2 can be read online here:
108108 platforms = ['any' ],
109109 py_modules = ["cmd2" ],
110110 keywords = 'command prompt console cmd' ,
111+ python_requires = '>=2.7' ,
111112 install_requires = INSTALL_REQUIRES ,
112113 extras_require = EXTRAS_REQUIRE ,
113114 tests_require = TESTS_REQUIRE ,
Original file line number Diff line number Diff line change 2626
2727
2828def test_ver ():
29- assert cmd2 .__version__ == '0.8.6 '
29+ assert cmd2 .__version__ == '0.8.7-rc1 '
3030
3131
3232def test_empty_statement (base_app ):
You can’t perform that action at this time.
0 commit comments