File tree Expand file tree Collapse file tree 5 files changed +6
-5
lines changed
Expand file tree Collapse file tree 5 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 440.7.6
55-----
66
7- * Release date: TBD*
7+ * Release date: 2017-08- TBD*
88
99* Bug Fixes
1010 * Case-sensitive command parsing was completely broken and has been fixed
@@ -14,6 +14,7 @@ rerNews
1414* Enhancements
1515 * Enhanced tab-completion of cmd2 command names to support case-insensitive completion
1616 * Added an example showing how to remove unused commands
17+ * Improved how transcript testing handles prompts with ANSI escape codes by stripping them
1718
18190.7.5
1920-----
Original file line number Diff line number Diff line change 7575except ImportError :
7676 pass
7777
78- __version__ = '0.7.6a '
78+ __version__ = '0.7.6 '
7979
8080# Pyparsing enablePackrat() can greatly speed up parsing, but problems have been seen in Python 3 in the past
8181pyparsing .ParserElement .enablePackrat ()
Original file line number Diff line number Diff line change 6262# The short X.Y version.
6363version = '0.7'
6464# The full version, including alpha/beta/rc tags.
65- release = '0.7.5 '
65+ release = '0.7.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 55"""
66from setuptools import setup
77
8- VERSION = '0.7.6a '
8+ VERSION = '0.7.6 '
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
Original file line number Diff line number Diff line change 2222
2323
2424def test_ver ():
25- assert cmd2 .__version__ == '0.7.6a '
25+ assert cmd2 .__version__ == '0.7.6 '
2626
2727
2828def test_empty_statement (base_app ):
You can’t perform that action at this time.
0 commit comments