diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2018-06-28 20:47:33 -0700 |
---|---|---|
committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2018-06-28 20:47:33 -0700 |
commit | 2521bd2b45e67833f8f3232bc6b6e48d5b3127f8 (patch) | |
tree | 0061fd867c43709335d56dd29e24de78d5b0d395 | |
parent | c038c83498afdd0f7002df125b945a3089516e7c (diff) | |
download | cmd2-git-2521bd2b45e67833f8f3232bc6b6e48d5b3127f8.tar.gz |
Bump version to 0.9.2 in preparation for release
-rw-r--r-- | cmd2/cmd2.py | 2 | ||||
-rw-r--r-- | docs/conf.py | 2 | ||||
-rwxr-xr-x | setup.py | 2 | ||||
-rw-r--r-- | tests/test_cmd2.py | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/cmd2/cmd2.py b/cmd2/cmd2.py index 85439927..9c36a975 100644 --- a/cmd2/cmd2.py +++ b/cmd2/cmd2.py @@ -114,7 +114,7 @@ try: except ImportError: # pragma: no cover ipython_available = False -__version__ = '0.9.2a' +__version__ = '0.9.2' # optional attribute, when tagged on a function, allows cmd2 to categorize commands diff --git a/docs/conf.py b/docs/conf.py index 25ba2a78..45639f58 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -62,7 +62,7 @@ author = 'Catherine Devlin and Todd Leonhardt' # The short X.Y version. version = '0.9' # The full version, including alpha/beta/rc tags. -release = '0.9.2a' +release = '0.9.2' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. @@ -5,7 +5,7 @@ Setuptools setup file, used to install or test 'cmd2' """ from setuptools import setup -VERSION = '0.9.2a' +VERSION = '0.9.2' 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 diff --git a/tests/test_cmd2.py b/tests/test_cmd2.py index 94cd42f9..9ad61378 100644 --- a/tests/test_cmd2.py +++ b/tests/test_cmd2.py @@ -29,7 +29,7 @@ from .conftest import run_cmd, normalize, BASE_HELP, BASE_HELP_VERBOSE, \ def test_ver(): - assert cmd2.__version__ == '0.9.2a' + assert cmd2.__version__ == '0.9.2' def test_empty_statement(base_app): |