Skip to content

Commit 679401b

Browse files
committed
Bumped version to 0.7.4 and updated CHANGES file
1 parent 7a2f75c commit 679401b

4 files changed

Lines changed: 4 additions & 3 deletions

File tree

CHANGES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ News
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

cmd2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
except 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
8888
pyparsing.ParserElement.enablePackrat()

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"""
66
from setuptools import setup
77

8-
VERSION = '0.7.4b'
8+
VERSION = '0.7.4'
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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323

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

2727

2828
def test_base_help(base_app):

0 commit comments

Comments
 (0)