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
+
1
3
## 0.9.0 (May 28, 2018)
2
4
* Bug Fixes
3
5
* If self.default_to_shell is true, then redirection and piping are now properly passed to the shell. Previously it was truncated.
36
38
* Known Issues
37
39
* Some developers have noted very slow performance when importing the `` cmd2 `` module. The issue
38
40
it intermittant, and investigation of the root cause is ongoing.
39
-
41
+
40
42
## 0.8.6 (May 27, 2018)
41
43
* 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
43
45
* Fixed issue where completion display function was overwritten when a submenu quits
44
46
* Fixed `` AttributeError `` on Windows when running a `` select `` command cause by ** pyreadline** not implementing `` remove_history_item ``
45
47
* Enhancements
Original file line number Diff line number Diff line change @@ -124,7 +124,7 @@ def __subclasshook__(cls, C):
124
124
except ImportError :
125
125
ipython_available = False
126
126
127
- __version__ = '0.9.0 '
127
+ __version__ = '0.9.1rc1 '
128
128
129
129
130
130
# optional attribute, when tagged on a function, allows cmd2 to categorize commands
Original file line number Diff line number Diff line change 62
62
# The short X.Y version.
63
63
version = '0.9'
64
64
# The full version, including alpha/beta/rc tags.
65
- release = '0.9.0 '
65
+ release = '0.9.1rc1 '
66
66
67
67
# The language for content autogenerated by Sphinx. Refer to documentation
68
68
# for a list of supported languages.
Original file line number Diff line number Diff line change 5
5
"""
6
6
from setuptools import setup
7
7
8
- VERSION = '0.9.0 '
8
+ VERSION = '0.9.1rc1 '
9
9
DESCRIPTION = "cmd2 - a tool for building interactive command line applications in Python"
10
10
LONG_DESCRIPTION = """cmd2 is a tool for building interactive command line applications in Python. Its goal is to make
11
11
it quick and easy for developers to build feature-rich and user-friendly interactive command line applications. It
38
38
39
39
Usable without modification anywhere cmd is used; simply import cmd2.Cmd in place of cmd.Cmd.
40
40
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.
43
43
"""
44
44
45
45
CLASSIFIERS = list (filter (None , map (str .strip ,
Original file line number Diff line number Diff line change 28
28
29
29
30
30
def test_ver ():
31
- assert cmd2 .__version__ == '0.9.0 '
31
+ assert cmd2 .__version__ == '0.9.1rc1 '
32
32
33
33
34
34
def test_empty_statement (base_app ):
You can’t perform that action at this time.
0 commit comments