summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES.md11
-rwxr-xr-xcmd2.py2
-rwxr-xr-xsetup.py2
-rw-r--r--tests/test_cmd2.py2
4 files changed, 11 insertions, 6 deletions
diff --git a/CHANGES.md b/CHANGES.md
index c1686888..8437bb66 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -7,11 +7,16 @@ News
*Release date: TBD*
* Bug fixes
- * Fixed a bug in display a span of history items when only an end index is supplied
+ * Fixed a bug in displaying a span of history items when only an end index is supplied
* Enhancements
* Added the ability to exclude commands from the help menu (**eof** included by default)
- * Redundant list command removed and features merged into history command
- * Added **pyscript** command which supports running Python scripts with arguments
+ * Redundant **list** command removed and features merged into **history** command
+ * Added **pyscript** command which supports tab-completion and running Python scripts with arguments
+ * Changed default value of USE_ARG_LIST to True - this affects the beavhior of all **@options** commands
+ * **WARNING**: This breaks backwards compatibility, to restore backwards compatibility, add this to the
+ **__init__()** method in your custom class derived from cmd2.Cmd:
+ * set_use_arg_list(False)
+ * This change improves argument parsing for all new applications
0.7.2
-----
diff --git a/cmd2.py b/cmd2.py
index a3a94577..46eb4926 100755
--- a/cmd2.py
+++ b/cmd2.py
@@ -87,7 +87,7 @@ try:
except ImportError:
pass
-__version__ = '0.7.3a'
+__version__ = '0.7.3'
# Pyparsing enablePackrat() can greatly speed up parsing, but problems have been seen in Python 3 in the past
pyparsing.ParserElement.enablePackrat()
diff --git a/setup.py b/setup.py
index e5196a6e..9e2f49f0 100755
--- a/setup.py
+++ b/setup.py
@@ -5,7 +5,7 @@ Setuptools setup file, used to install or test 'cmd2'
"""
from setuptools import setup
-VERSION = '0.7.3a'
+VERSION = '0.7.3'
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
diff --git a/tests/test_cmd2.py b/tests/test_cmd2.py
index 3a69c09c..c38adc5d 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.3a'
+ assert cmd2.__version__ == '0.7.3'
def test_base_help(base_app):