Skip to content

Commit a72219b

Browse files
committed
Update version to 0.9.1 for #421
1 parent 47908e7 commit a72219b

File tree

5 files changed

+8
-5
lines changed

5 files changed

+8
-5
lines changed

CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
## 0.9.1 (TBD)
1+
## 0.9.1 (May 28, 2018)
2+
* Bug Fixes
3+
* fix packaging error for 0.8.x versions (yes we had to deploy a new version
4+
of the 0.9.x series to fix a packaging error with the 0.8.x version)
25

36
## 0.9.0 (May 28, 2018)
47
* Bug Fixes

cmd2/cmd2.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ def __subclasshook__(cls, C):
124124
except ImportError:
125125
ipython_available = False
126126

127-
__version__ = '0.9.0.1'
127+
__version__ = '0.9.1'
128128

129129

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

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

8-
VERSION = '0.9.0.1'
8+
VERSION = '0.9.1'
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

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929

3030
def test_ver():
31-
assert cmd2.__version__ == '0.9.0.1'
31+
assert cmd2.__version__ == '0.9.1'
3232

3333

3434
def test_empty_statement(base_app):

0 commit comments

Comments
 (0)