From a72219b1431627fdd2ce500d5f0f2bad26b3a6d3 Mon Sep 17 00:00:00 2001 From: kotfu Date: Mon, 28 May 2018 16:05:22 -0600 Subject: [PATCH] Update version to 0.9.1 for #421 --- CHANGELOG.md | 5 ++++- cmd2/cmd2.py | 2 +- docs/conf.py | 2 +- setup.py | 2 +- tests/test_cmd2.py | 2 +- 5 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0ed33c0db..08c4e15e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,7 @@ -## 0.9.1 (TBD) +## 0.9.1 (May 28, 2018) +* Bug Fixes + * fix packaging error for 0.8.x versions (yes we had to deploy a new version + of the 0.9.x series to fix a packaging error with the 0.8.x version) ## 0.9.0 (May 28, 2018) * Bug Fixes diff --git a/cmd2/cmd2.py b/cmd2/cmd2.py index ed4120d7b..b6e7cf19b 100644 --- a/cmd2/cmd2.py +++ b/cmd2/cmd2.py @@ -124,7 +124,7 @@ def __subclasshook__(cls, C): except ImportError: ipython_available = False -__version__ = '0.9.0.1' +__version__ = '0.9.1' # optional attribute, when tagged on a function, allows cmd2 to categorize commands diff --git a/docs/conf.py b/docs/conf.py index 4803309e2..997405ddf 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -62,7 +62,7 @@ # The short X.Y version. version = '0.9' # The full version, including alpha/beta/rc tags. -release = '0.9.0.1' +release = '0.9.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index 6a3babd98..193dab278 100755 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ """ from setuptools import setup -VERSION = '0.9.0.1' +VERSION = '0.9.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 diff --git a/tests/test_cmd2.py b/tests/test_cmd2.py index 51ec90d2d..33d9ca41f 100644 --- a/tests/test_cmd2.py +++ b/tests/test_cmd2.py @@ -28,7 +28,7 @@ def test_ver(): - assert cmd2.__version__ == '0.9.0.1' + assert cmd2.__version__ == '0.9.1' def test_empty_statement(base_app):