From 05e15985e4a593c8b14151c705315e8985cff00e Mon Sep 17 00:00:00 2001 From: kotfu Date: Mon, 28 May 2018 15:59:17 -0600 Subject: Trying 0.8.7 for #421 --- CHANGELOG.md | 2 +- cmd2.py | 2 +- docs/conf.py | 2 +- setup.py | 2 +- tests/test_cmd2.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index add49b1f..a449d97c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## 0.8.7 (TBD) +## 0.8.7 (May 28, 2018) * Bug Fixes * Make sure pip installs version 0.8.x if you have python 2.7 diff --git a/cmd2.py b/cmd2.py index 279a944b..c5bde284 100755 --- a/cmd2.py +++ b/cmd2.py @@ -229,7 +229,7 @@ if six.PY2 and sys.platform.startswith('lin'): pass -__version__ = '0.8.6.1' +__version__ = '0.8.7' # 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 fa738497..e81205b3 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.6.1' +release = '0.8.7' # 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 3cd9d1c4..679e6137 100755 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ import sys import setuptools from setuptools import setup -VERSION = '0.8.6.1' +VERSION = '0.8.7' 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 1256f37e..66e4d601 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.6.1' + assert cmd2.__version__ == '0.8.7' def test_empty_statement(base_app): -- cgit v1.2.1