Skip to content

Commit 09acbf8

Browse files
committed
Bump versions to 0.7.7a
This is to help distinguish latest code in GitHub from a version installed via pip from PyPI
1 parent 4c312e8 commit 09acbf8

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

cmd2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@
9898
else:
9999
BROKEN_PIPE_ERROR = IOError
100100

101-
__version__ = '0.7.6'
101+
__version__ = '0.7.7a'
102102

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

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
# The short X.Y version.
6363
version = '0.7'
6464
# The full version, including alpha/beta/rc tags.
65-
release = '0.7.6'
65+
release = '0.7.7a'
6666

6767
# The language for content autogenerated by Sphinx. Refer to documentation
6868
# for a list of supported languages.

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.6'
8+
VERSION = '0.7.7a'
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
@@ -22,7 +22,7 @@
2222

2323

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

2727

2828
def test_empty_statement(base_app):

0 commit comments

Comments
 (0)