Skip to content

Commit 05e1598

Browse files
committed
Trying 0.8.7 for #421
1 parent dc4d4c6 commit 05e1598

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 0.8.7 (TBD)
1+
## 0.8.7 (May 28, 2018)
22
* Bug Fixes
33
* Make sure pip installs version 0.8.x if you have python 2.7
44

cmd2.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ def pyreadline_remove_history_item(pos):
229229
pass
230230

231231

232-
__version__ = '0.8.6.1'
232+
__version__ = '0.8.7'
233233

234234
# Pyparsing enablePackrat() can greatly speed up parsing, but problems have been seen in Python 3 in the past
235235
pyparsing.ParserElement.enablePackrat()

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
# The short X.Y version.
6363
version = '0.8'
6464
# The full version, including alpha/beta/rc tags.
65-
release = '0.8.6.1'
65+
release = '0.8.7'
6666

6767
# The language for content autogenerated by Sphinx. Refer to documentation
6868
# for a list of supported languages.

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import setuptools
99
from setuptools import setup
1010

11-
VERSION = '0.8.6.1'
11+
VERSION = '0.8.7'
1212
DESCRIPTION = "cmd2 - a tool for building interactive command line applications in Python"
1313
LONG_DESCRIPTION = """cmd2 is a tool for building interactive command line applications in Python. Its goal is to make
1414
it quick and easy for developers to build feature-rich and user-friendly interactive command line applications. It

tests/test_cmd2.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727

2828
def test_ver():
29-
assert cmd2.__version__ == '0.8.6.1'
29+
assert cmd2.__version__ == '0.8.7'
3030

3131

3232
def test_empty_statement(base_app):

0 commit comments

Comments
 (0)