Skip to content

Commit

Permalink
Trying 0.8.7 for #421
Browse files Browse the repository at this point in the history
  • Loading branch information
kotfu committed May 28, 2018
1 parent dc4d4c6 commit 05e1598
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion cmd2.py
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ def pyreadline_remove_history_item(pos):
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()
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
# 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.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
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
Expand Down
2 changes: 1 addition & 1 deletion tests/test_cmd2.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@


def test_ver():
assert cmd2.__version__ == '0.8.6.1'
assert cmd2.__version__ == '0.8.7'


def test_empty_statement(base_app):
Expand Down

0 comments on commit 05e1598

Please sign in to comment.