File tree Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
- ## 0.8.3 (TBD )
1
+ ## 0.8.3 (April 09, 2018 )
2
2
* Bug Fixes
3
3
* Fixed `` help `` command not calling functions for help topics
4
4
* Fixed not being able to use quoted paths when redirecting with `` < `` and `` > ``
Original file line number Diff line number Diff line change @@ -183,7 +183,7 @@ class RlType(Enum):
183
183
except ImportError :
184
184
pass
185
185
186
- __version__ = '0.8.2 '
186
+ __version__ = '0.8.3 '
187
187
188
188
# Pyparsing enablePackrat() can greatly speed up parsing, but problems have been seen in Python 3 in the past
189
189
pyparsing .ParserElement .enablePackrat ()
Original file line number Diff line number Diff line change 62
62
# The short X.Y version.
63
63
version = '0.8'
64
64
# The full version, including alpha/beta/rc tags.
65
- release = '0.8.2 '
65
+ release = '0.8.3 '
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 8
8
import setuptools
9
9
from setuptools import setup
10
10
11
- VERSION = '0.8.2 '
11
+ VERSION = '0.8.3 '
12
12
DESCRIPTION = "cmd2 - a tool for building interactive command line applications in Python"
13
13
LONG_DESCRIPTION = """cmd2 is a tool for building interactive command line applications in Python. Its goal is to make
14
14
it 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 25
25
26
26
27
27
def test_ver ():
28
- assert cmd2 .__version__ == '0.8.2 '
28
+ assert cmd2 .__version__ == '0.8.3 '
29
29
30
30
31
31
def test_empty_statement (base_app ):
You can’t perform that action at this time.
0 commit comments