Skip to content

Commit

Permalink
Bumping version to 0.7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
tleonhardt committed May 22, 2017
1 parent c2ceb24 commit e18ee68
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
9 changes: 8 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,17 @@
News
====

0.7.2
-----

*Release date: 2017-05-22*

* Added a MANIFEST.ini file to make sure a few extra files get included in the PyPI source distribution

0.7.1
-----

*Release date: TBD*
*Release date: 2017-05-22*

* Bug fixes
* ``-`` wasn't being treated as a legal character
Expand Down
2 changes: 1 addition & 1 deletion cmd2.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
except ImportError:
pass

__version__ = '0.7.1'
__version__ = '0.7.2'

# Pyparsing enablePackrat() can greatly speed up parsing, but problems have been seen in Python 3 in the past
pyparsing.ParserElement.enablePackrat()
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.7.1'
VERSION = '0.7.2'
DESCRIPTION = "Extra features for standard library's cmd module"

LONG_DESCRIPTION = """cmd2 is an enhancement to the standard library's cmd module for Python 2.7
Expand Down
2 changes: 1 addition & 1 deletion tests/test_cmd2.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@


def test_ver():
assert cmd2.__version__ == '0.7.1'
assert cmd2.__version__ == '0.7.2'


def test_base_help(base_app):
Expand Down

0 comments on commit e18ee68

Please sign in to comment.