Skip to content

Commit b61268b

Browse files
committed
Updated CHANGES.md file and bumped version to 0.7.3
Bumped version in preparation for 0.7.3 release probably within the next couple weeks.
1 parent f2cb3a0 commit b61268b

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

CHANGES.md

+8-3
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,16 @@ News
77
*Release date: TBD*
88

99
* Bug fixes
10-
* Fixed a bug in display a span of history items when only an end index is supplied
10+
* Fixed a bug in displaying a span of history items when only an end index is supplied
1111
* Enhancements
1212
* Added the ability to exclude commands from the help menu (**eof** included by default)
13-
* Redundant list command removed and features merged into history command
14-
* Added **pyscript** command which supports running Python scripts with arguments
13+
* Redundant **list** command removed and features merged into **history** command
14+
* Added **pyscript** command which supports tab-completion and running Python scripts with arguments
15+
* Changed default value of USE_ARG_LIST to True - this affects the beavhior of all **@options** commands
16+
* **WARNING**: This breaks backwards compatibility, to restore backwards compatibility, add this to the
17+
**__init__()** method in your custom class derived from cmd2.Cmd:
18+
* set_use_arg_list(False)
19+
* This change improves argument parsing for all new applications
1520

1621
0.7.2
1722
-----

cmd2.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
8787
except ImportError:
8888
pass
8989

90-
__version__ = '0.7.3a'
90+
__version__ = '0.7.3'
9191

9292
# Pyparsing enablePackrat() can greatly speed up parsing, but problems have been seen in Python 3 in the past
9393
pyparsing.ParserElement.enablePackrat()

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"""
66
from setuptools import setup
77

8-
VERSION = '0.7.3a'
8+
VERSION = '0.7.3'
99
DESCRIPTION = "Extra features for standard library's cmd module"
1010

1111
LONG_DESCRIPTION = """cmd2 is an enhancement to the standard library's cmd module for Python 2.7

tests/test_cmd2.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323

2424
def test_ver():
25-
assert cmd2.__version__ == '0.7.3a'
25+
assert cmd2.__version__ == '0.7.3'
2626

2727

2828
def test_base_help(base_app):

0 commit comments

Comments
 (0)