File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 99* Bug fixes
1010 * Fixed a couple bugs in interacting with pastebuffer/clipboard on macOS and Linux
1111 * Fixed a couple bugs in edit and save commands if called when history is empty
12+ * Ability to pipe `` cmd2 `` command output to a shell command is now more reliable, particularly on Windows
1213* Enhancements
1314 * Ensure that path and shell command tab-completion results are alphabetically sorted
1415 * Removed feature for load command to load scripts from URLS
Original file line number Diff line number Diff line change 8282except ImportError :
8383 pass
8484
85- __version__ = '0.7.4b '
85+ __version__ = '0.7.4 '
8686
8787# Pyparsing enablePackrat() can greatly speed up parsing, but problems have been seen in Python 3 in the past
8888pyparsing .ParserElement .enablePackrat ()
Original file line number Diff line number Diff line change 55"""
66from setuptools import setup
77
8- VERSION = '0.7.4b '
8+ VERSION = '0.7.4 '
99DESCRIPTION = "Extra features for standard library's cmd module"
1010
1111LONG_DESCRIPTION = """cmd2 is an enhancement to the standard library's cmd module for Python 2.7
Original file line number Diff line number Diff line change 2222
2323
2424def test_ver ():
25- assert cmd2 .__version__ == '0.7.4b '
25+ assert cmd2 .__version__ == '0.7.4 '
2626
2727
2828def test_base_help (base_app ):
You can’t perform that action at this time.
0 commit comments