summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2017-05-22 16:37:53 -0700
committerTodd Leonhardt <todd.leonhardt@gmail.com>2017-05-22 16:37:53 -0700
commit67e6373838c06d74ec596ed7f880214c2b34c5e6 (patch)
treeb09381abea8a046dd38365cf33d6278315c1bc64
parent762c94717482090dd4d63de5950e8dd1500419c9 (diff)
downloadcmd2-git-67e6373838c06d74ec596ed7f880214c2b34c5e6.tar.gz
Bumping version to 0.7.3a
Changing to alpha version just to avoid confusion with release in PyPI
-rwxr-xr-xcmd2.py2
-rwxr-xr-xsetup.py2
-rw-r--r--tests/test_cmd2.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/cmd2.py b/cmd2.py
index a8171c2f..9f2f6645 100755
--- a/cmd2.py
+++ b/cmd2.py
@@ -87,7 +87,7 @@ try:
except ImportError:
pass
-__version__ = '0.7.2'
+__version__ = '0.7.3a'
# 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 f77391aa..e5196a6e 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.2'
+VERSION = '0.7.3a'
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 42fb9a8c..ce47ef47 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.2'
+ assert cmd2.__version__ == '0.7.3a'
def test_base_help(base_app):