summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2018-04-15 11:47:25 -0700
committerTodd Leonhardt <todd.leonhardt@gmail.com>2018-04-15 11:47:25 -0700
commit09b22c56266aad307744372a0dca8b57f43162bd (patch)
tree70d598d690add8fe60e060dc4db9e7f2e78e7131
parentd4c6cd476d9cbdf306dec9ccde1efa822d2c61d8 (diff)
downloadcmd2-git-09b22c56266aad307744372a0dca8b57f43162bd.tar.gz
Created python2 branch for 0.8.x bug fix releases
Also: - Bumped version to 0.8.6 on this branch
-rw-r--r--CHANGELOG.md4
-rwxr-xr-xcmd2.py2
-rw-r--r--docs/conf.py2
-rwxr-xr-xsetup.py2
-rw-r--r--tests/test_cmd2.py2
5 files changed, 8 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index ae2f85b9..8c0c1601 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,7 @@
+## 0.8.6 (TBD)
+ * Bug Fixes
+ * TBD
+
## 0.8.5 (April 15, 2018)
* Bug Fixes
* Fixed a bug with all argument decorators where the wrapped function wasn't returning a value and thus couldn't cause the cmd2 app to quit
diff --git a/cmd2.py b/cmd2.py
index 1689d37c..ec07510e 100755
--- a/cmd2.py
+++ b/cmd2.py
@@ -188,7 +188,7 @@ if six.PY2 and sys.platform.startswith('lin'):
pass
-__version__ = '0.8.5'
+__version__ = '0.8.6'
# 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 c654c7bd..c5a4846e 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.5'
+release = '0.8.6'
# 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 3e13d5b4..23f2eb0b 100755
--- a/setup.py
+++ b/setup.py
@@ -8,7 +8,7 @@ import sys
import setuptools
from setuptools import setup
-VERSION = '0.8.5'
+VERSION = '0.8.6'
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 58f6dbae..b3fcde3f 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.5'
+ assert cmd2.__version__ == '0.8.6'
def test_empty_statement(base_app):