File tree Expand file tree Collapse file tree 5 files changed +10
-8
lines changed Expand file tree Collapse file tree 5 files changed +10
-8
lines changed Original file line number Diff line number Diff line change 1+ ## 0.9.1 (TBD)
2+
13## 0.9.0 (May 28, 2018)
24* Bug Fixes
35 * If self.default_to_shell is true, then redirection and piping are now properly passed to the shell. Previously it was truncated.
3638* Known Issues
3739 * Some developers have noted very slow performance when importing the `` cmd2 `` module. The issue
3840 it intermittant, and investigation of the root cause is ongoing.
39-
41+
4042## 0.8.6 (May 27, 2018)
4143* Bug Fixes
42- * Commands using the @with_argparser_and_unknown_args were not correctly recognized when tab completing
44+ * Commands using the @with_argparser_and_unknown_args were not correctly recognized when tab completing
4345 * Fixed issue where completion display function was overwritten when a submenu quits
4446 * Fixed `` AttributeError `` on Windows when running a `` select `` command cause by ** pyreadline** not implementing `` remove_history_item ``
4547* Enhancements
Original file line number Diff line number Diff line change @@ -124,7 +124,7 @@ def __subclasshook__(cls, C):
124124except ImportError :
125125 ipython_available = False
126126
127- __version__ = '0.9.0 '
127+ __version__ = '0.9.1rc1 '
128128
129129
130130# optional attribute, when tagged on a function, allows cmd2 to categorize commands
Original file line number Diff line number Diff line change 6262# The short X.Y version.
6363version = '0.9'
6464# The full version, including alpha/beta/rc tags.
65- release = '0.9.0 '
65+ release = '0.9.1rc1 '
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 55"""
66from setuptools import setup
77
8- VERSION = '0.9.0 '
8+ VERSION = '0.9.1rc1 '
99DESCRIPTION = "cmd2 - a tool for building interactive command line applications in Python"
1010LONG_DESCRIPTION = """cmd2 is a tool for building interactive command line applications in Python. Its goal is to make
1111it quick and easy for developers to build feature-rich and user-friendly interactive command line applications. It
3838
3939Usable without modification anywhere cmd is used; simply import cmd2.Cmd in place of cmd.Cmd.
4040
41- Version 0.9.0+ of cmd2 supports Python 3.4+ only. If you wish to use cmd2 with Python 2.7, then please install version
42- 0.8.6 or earlier.
41+ Version 0.9.0+ of cmd2 supports Python 3.4+ only. If you wish to use cmd2 with Python 2.7, then
42+ please install version 0.8.x.
4343"""
4444
4545CLASSIFIERS = list (filter (None , map (str .strip ,
Original file line number Diff line number Diff line change 2828
2929
3030def test_ver ():
31- assert cmd2 .__version__ == '0.9.0 '
31+ assert cmd2 .__version__ == '0.9.1rc1 '
3232
3333
3434def test_empty_statement (base_app ):
You can’t perform that action at this time.
0 commit comments