Skip to content

Commit d80d672

Browse files
committed
Bumped version to 0.9.3 now that 0.9.2 release is out
1 parent 5507e16 commit d80d672

File tree

5 files changed

+6
-4
lines changed

5 files changed

+6
-4
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
## 0.9.3 (TBD, 2018)
2+
13
## 0.9.2 (June 28, 2018)
24
* Bug Fixes
35
* Fixed issue where piping and redirecting did not work correctly with paths that had spaces

cmd2/cmd2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ def __subclasshook__(cls, C):
114114
except ImportError: # pragma: no cover
115115
ipython_available = False
116116

117-
__version__ = '0.9.2'
117+
__version__ = '0.9.3'
118118

119119

120120
# optional attribute, when tagged on a function, allows cmd2 to categorize commands

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.9'
6464
# The full version, including alpha/beta/rc tags.
65-
release = '0.9.2'
65+
release = '0.9.3'
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
@@ -5,7 +5,7 @@
55
"""
66
from setuptools import setup
77

8-
VERSION = '0.9.2'
8+
VERSION = '0.9.3'
99
DESCRIPTION = "cmd2 - a tool for building interactive command line applications in Python"
1010
LONG_DESCRIPTION = """cmd2 is a tool for building interactive command line applications in Python. Its goal is to make
1111
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
@@ -29,7 +29,7 @@
2929

3030

3131
def test_ver():
32-
assert cmd2.__version__ == '0.9.2'
32+
assert cmd2.__version__ == '0.9.3'
3333

3434

3535
def test_empty_statement(base_app):

0 commit comments

Comments
 (0)