Skip to content

Commit 09b22c5

Browse files
committed
Created python2 branch for 0.8.x bug fix releases
Also: - Bumped version to 0.8.6 on this branch
1 parent d4c6cd4 commit 09b22c5

File tree

5 files changed

+8
-4
lines changed

5 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.8.6 (TBD)
2+
* Bug Fixes
3+
* TBD
4+
15
## 0.8.5 (April 15, 2018)
26
* Bug Fixes
37
* 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

cmd2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ class RlType(Enum):
188188
pass
189189

190190

191-
__version__ = '0.8.5'
191+
__version__ = '0.8.6'
192192

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

docs/conf.py

Lines changed: 1 addition & 1 deletion
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.5'
65+
release = '0.8.6'
6666

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

setup.py

Lines changed: 1 addition & 1 deletion
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.5'
11+
VERSION = '0.8.6'
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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727

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

3131

3232
def test_empty_statement(base_app):

0 commit comments

Comments
 (0)