diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2017-06-24 09:30:18 -0400 |
---|---|---|
committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2017-06-24 09:30:18 -0400 |
commit | b72a8ba7eed899ee8c44da36aa2636496bff89c7 (patch) | |
tree | 7ad860c98f534ba53a2f018967226004ad69a4a6 | |
parent | f57c7621ff18c8ee3888df2cb20711411886e484 (diff) | |
download | cmd2-git-b72a8ba7eed899ee8c44da36aa2636496bff89c7.tar.gz |
Set version to 0.7.4b for now
-rwxr-xr-x | cmd2.py | 2 | ||||
-rwxr-xr-x | setup.py | 6 | ||||
-rw-r--r-- | tests/test_cmd2.py | 2 |
3 files changed, 6 insertions, 4 deletions
@@ -87,7 +87,7 @@ try: except ImportError: pass -__version__ = '0.7.3' +__version__ = '0.7.4b' # Pyparsing enablePackrat() can greatly speed up parsing, but problems have been seen in Python 3 in the past pyparsing.ParserElement.enablePackrat() @@ -5,7 +5,7 @@ Setuptools setup file, used to install or test 'cmd2' """ from setuptools import setup -VERSION = '0.7.3' +VERSION = '0.7.4b' DESCRIPTION = "Extra features for standard library's cmd module" LONG_DESCRIPTION = """cmd2 is an enhancement to the standard library's cmd module for Python 2.7 @@ -16,7 +16,7 @@ https://cmd2.readthedocs.io/ Drop-in replacement adds several features for command-prompt tools: - * Searchable command history (commands: "hi", "li", "run") + * Searchable command history (commands: "history", "run") * Load commands from file, save to file, edit commands in file * Multi-line commands * Case-insensitive commands @@ -28,6 +28,8 @@ Drop-in replacement adds several features for command-prompt tools: * bare >, >>, < redirect to/from paste buffer * accepts abbreviated commands when unambiguous * `py` enters interactive Python console + * `pyscript` executes a Python script + * Good tab-completion of commands and file system paths * test apps against sample session transcript (see examples/example.py) Usable without modification anywhere cmd is used; simply import cmd2.Cmd in place of cmd.Cmd. diff --git a/tests/test_cmd2.py b/tests/test_cmd2.py index 15ae6cc2..757ed418 100644 --- a/tests/test_cmd2.py +++ b/tests/test_cmd2.py @@ -22,7 +22,7 @@ from conftest import run_cmd, normalize, BASE_HELP, HELP_HISTORY, SHORTCUTS_TXT, def test_ver(): - assert cmd2.__version__ == '0.7.3' + assert cmd2.__version__ == '0.7.4b' def test_base_help(base_app): |