File tree Expand file tree Collapse file tree 5 files changed +8
-5
lines changed Expand file tree Collapse file tree 5 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 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)
2
5
3
6
## 0.9.0 (May 28, 2018)
4
7
* Bug Fixes
Original file line number Diff line number Diff line change @@ -124,7 +124,7 @@ def __subclasshook__(cls, C):
124
124
except ImportError :
125
125
ipython_available = False
126
126
127
- __version__ = '0.9.0. 1'
127
+ __version__ = '0.9.1'
128
128
129
129
130
130
# optional attribute, when tagged on a function, allows cmd2 to categorize commands
Original file line number Diff line number Diff line change 62
62
# The short X.Y version.
63
63
version = '0.9'
64
64
# The full version, including alpha/beta/rc tags.
65
- release = '0.9.0. 1'
65
+ release = '0.9.1'
66
66
67
67
# The language for content autogenerated by Sphinx. Refer to documentation
68
68
# for a list of supported languages.
Original file line number Diff line number Diff line change 5
5
"""
6
6
from setuptools import setup
7
7
8
- VERSION = '0.9.0. 1'
8
+ VERSION = '0.9.1'
9
9
DESCRIPTION = "cmd2 - a tool for building interactive command line applications in Python"
10
10
LONG_DESCRIPTION = """cmd2 is a tool for building interactive command line applications in Python. Its goal is to make
11
11
it quick and easy for developers to build feature-rich and user-friendly interactive command line applications. It
Original file line number Diff line number Diff line change 28
28
29
29
30
30
def test_ver ():
31
- assert cmd2 .__version__ == '0.9.0. 1'
31
+ assert cmd2 .__version__ == '0.9.1'
32
32
33
33
34
34
def test_empty_statement (base_app ):
You can’t perform that action at this time.
0 commit comments