Skip to content

Commit

Permalink
Bump version to 0.7.5 (from 0.7.5a)
Browse files Browse the repository at this point in the history
  • Loading branch information
tleonhardt committed Jul 8, 2017
1 parent 891fe3f commit d1efcb3
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion cmd2.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
except ImportError:
pass

__version__ = '0.7.5a'
__version__ = '0.7.5'

# 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 docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
# The short X.Y version.
version = '0.7'
# The full version, including alpha/beta/rc tags.
release = '0.7.4'
release = '0.7.5'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
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.5a'
VERSION = '0.7.5'
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
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.5a'
assert cmd2.__version__ == '0.7.5'


def test_empty_statement(base_app):
Expand Down

0 comments on commit d1efcb3

Please sign in to comment.