Skip to content

Commit 322a7c2

Browse files
committed
Preparing for 0.8.4 release
1 parent e6195a2 commit 322a7c2

File tree

5 files changed

+9
-6
lines changed

5 files changed

+9
-6
lines changed

CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
1-
## 0.8.3 (April 10, 2018)
1+
## 0.8.4 (April 10, 2018)
2+
* Bug Fixes
3+
* Fixed conditional dependency issue in setup.py that was in 0.8.3.
4+
5+
## 0.8.3 (April 09, 2018)
26
* Bug Fixes
37
* Fixed ``help`` command not calling functions for help topics
48
* Fixed not being able to use quoted paths when redirecting with ``<`` and ``>``
5-
* Fixed conditional dependency issue in setup.py that was in first release of 0.8.3.
69

710
* Enhancements
811
* Tab completion has been overhauled and now supports completion of strings with quotes and spaces.

cmd2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ class RlType(Enum):
183183
except ImportError:
184184
pass
185185

186-
__version__ = '0.8.3'
186+
__version__ = '0.8.4'
187187

188188
# Pyparsing enablePackrat() can greatly speed up parsing, but problems have been seen in Python 3 in the past
189189
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.3'
65+
release = '0.8.4'
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.3'
11+
VERSION = '0.8.4'
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
@@ -25,7 +25,7 @@
2525

2626

2727
def test_ver():
28-
assert cmd2.__version__ == '0.8.3'
28+
assert cmd2.__version__ == '0.8.4'
2929

3030

3131
def test_empty_statement(base_app):

0 commit comments

Comments
 (0)