Skip to content

Commit 5109cd0

Browse files
authored
Merge pull request #240 from python-cmd2/bump_version
Bump version to 0.7.9a
2 parents 0dc5c47 + 3bf6573 commit 5109cd0

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

cmd2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@
105105
else:
106106
BROKEN_PIPE_ERROR = IOError
107107

108-
__version__ = '0.7.8'
108+
__version__ = '0.7.9a'
109109

110110
# Pyparsing enablePackrat() can greatly speed up parsing, but problems have been seen in Python 3 in the past
111111
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.8'
8+
VERSION = '0.7.9a'
99
DESCRIPTION = "cmd2 - a tool for building interactive command line applications in Python"
1010
LONG_DESCRIPTION = """cmd2 is a tool for building interactive command line applications in Python. Its goal is to make
1111
it quick and easy for developers to build feature-rich and user-friendly interactive command line applications. It

tests/test_cmd2.py

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

2525

2626
def test_ver():
27-
assert cmd2.__version__ == '0.7.8'
27+
assert cmd2.__version__ == '0.7.9a'
2828

2929

3030
def test_empty_statement(base_app):

0 commit comments

Comments
 (0)