summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkotfu <kotfu@kotfu.net>2018-05-28 15:21:20 -0600
committerkotfu <kotfu@kotfu.net>2018-05-28 15:21:20 -0600
commitdc4d4c6d9c22f7b3889b99ca5a4dbb649cce9c6c (patch)
tree92ad4673459a88eda9b9378b3a645be7ad37a7e0
parent8dcad4d2b9db2f6c2434af23cd4675efa8a28738 (diff)
downloadcmd2-git-0.8.6.1.tar.gz
Update version to 0.8.6.1 for #4210.8.6.1
-rwxr-xr-xcmd2.py2
-rw-r--r--docs/conf.py2
-rwxr-xr-xsetup.py2
-rw-r--r--tests/test_cmd2.py2
4 files changed, 4 insertions, 4 deletions
diff --git a/cmd2.py b/cmd2.py
index 2f25894a..279a944b 100755
--- a/cmd2.py
+++ b/cmd2.py
@@ -229,7 +229,7 @@ if six.PY2 and sys.platform.startswith('lin'):
pass
-__version__ = '0.8.7rc1'
+__version__ = '0.8.6.1'
# Pyparsing enablePackrat() can greatly speed up parsing, but problems have been seen in Python 3 in the past
pyparsing.ParserElement.enablePackrat()
diff --git a/docs/conf.py b/docs/conf.py
index 2952edf5..fa738497 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -62,7 +62,7 @@ author = 'Catherine Devlin and Todd Leonhardt'
# The short X.Y version.
version = '0.8'
# The full version, including alpha/beta/rc tags.
-release = '0.8.7rc1'
+release = '0.8.6.1'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
diff --git a/setup.py b/setup.py
index 5dccf02e..3cd9d1c4 100755
--- a/setup.py
+++ b/setup.py
@@ -8,7 +8,7 @@ import sys
import setuptools
from setuptools import setup
-VERSION = '0.8.7rc1'
+VERSION = '0.8.6.1'
DESCRIPTION = "cmd2 - a tool for building interactive command line applications in Python"
LONG_DESCRIPTION = """cmd2 is a tool for building interactive command line applications in Python. Its goal is to make
it quick and easy for developers to build feature-rich and user-friendly interactive command line applications. It
diff --git a/tests/test_cmd2.py b/tests/test_cmd2.py
index d802c614..1256f37e 100644
--- a/tests/test_cmd2.py
+++ b/tests/test_cmd2.py
@@ -26,7 +26,7 @@ from conftest import run_cmd, normalize, BASE_HELP, BASE_HELP_VERBOSE, \
def test_ver():
- assert cmd2.__version__ == '0.8.7rc1'
+ assert cmd2.__version__ == '0.8.6.1'
def test_empty_statement(base_app):