Skip to content

Commit

Permalink
Update version to 0.9.0.1 for #421
Browse files Browse the repository at this point in the history
  • Loading branch information
kotfu committed May 28, 2018
1 parent 65016d2 commit 393cb71
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion cmd2/cmd2.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ def __subclasshook__(cls, C):
except ImportError:
ipython_available = False

__version__ = '0.9.1rc1'
__version__ = '0.9.0.1'


# optional attribute, when tagged on a function, allows cmd2 to categorize commands
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
# The short X.Y version.
version = '0.9'
# The full version, including alpha/beta/rc tags.
release = '0.9.1rc1'
release = '0.9.0.1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"""
from setuptools import setup

VERSION = '0.9.1rc1'
VERSION = '0.9.0.1'
DESCRIPTION = "cmd2 - a tool for building interactive command line applications in Python"
LONG_DESCRIPTION = """cmd2 is a tool for building interactive command line applications in Python. Its goal is to make
it quick and easy for developers to build feature-rich and user-friendly interactive command line applications. It
Expand Down
2 changes: 1 addition & 1 deletion tests/test_cmd2.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@


def test_ver():
assert cmd2.__version__ == '0.9.1rc1'
assert cmd2.__version__ == '0.9.0.1'


def test_empty_statement(base_app):
Expand Down

0 comments on commit 393cb71

Please sign in to comment.