Skip to content

Commit 65016d2

Browse files
committed
Update version to 0.9.1rc1 to try and fix #421
1 parent 9076549 commit 65016d2

File tree

5 files changed

+10
-8
lines changed

5 files changed

+10
-8
lines changed

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
## 0.9.1 (TBD)
2+
13
## 0.9.0 (May 28, 2018)
24
* Bug Fixes
35
* If self.default_to_shell is true, then redirection and piping are now properly passed to the shell. Previously it was truncated.
@@ -36,10 +38,10 @@
3638
* Known Issues
3739
* Some developers have noted very slow performance when importing the ``cmd2`` module. The issue
3840
it intermittant, and investigation of the root cause is ongoing.
39-
41+
4042
## 0.8.6 (May 27, 2018)
4143
* Bug Fixes
42-
* Commands using the @with_argparser_and_unknown_args were not correctly recognized when tab completing
44+
* Commands using the @with_argparser_and_unknown_args were not correctly recognized when tab completing
4345
* Fixed issue where completion display function was overwritten when a submenu quits
4446
* Fixed ``AttributeError`` on Windows when running a ``select`` command cause by **pyreadline** not implementing ``remove_history_item``
4547
* Enhancements

cmd2/cmd2.py

Lines changed: 1 addition & 1 deletion
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'
127+
__version__ = '0.9.1rc1'
128128

129129

130130
# 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.0'
65+
release = '0.9.1rc1'
6666

6767
# The language for content autogenerated by Sphinx. Refer to documentation
6868
# for a list of supported languages.

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"""
66
from setuptools import setup
77

8-
VERSION = '0.9.0'
8+
VERSION = '0.9.1rc1'
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
@@ -38,8 +38,8 @@
3838
3939
Usable without modification anywhere cmd is used; simply import cmd2.Cmd in place of cmd.Cmd.
4040
41-
Version 0.9.0+ of cmd2 supports Python 3.4+ only. If you wish to use cmd2 with Python 2.7, then please install version
42-
0.8.6 or earlier.
41+
Version 0.9.0+ of cmd2 supports Python 3.4+ only. If you wish to use cmd2 with Python 2.7, then
42+
please install version 0.8.x.
4343
"""
4444

4545
CLASSIFIERS = list(filter(None, map(str.strip,

tests/test_cmd2.py

Lines changed: 1 addition & 1 deletion
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'
31+
assert cmd2.__version__ == '0.9.1rc1'
3232

3333

3434
def test_empty_statement(base_app):

0 commit comments

Comments
 (0)