Skip to content

Commit d1efcb3

Browse files
committed
Bump version to 0.7.5 (from 0.7.5a)
1 parent 891fe3f commit d1efcb3

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

cmd2.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
except ImportError:
7676
pass
7777

78-
__version__ = '0.7.5a'
78+
__version__ = '0.7.5'
7979

8080
# Pyparsing enablePackrat() can greatly speed up parsing, but problems have been seen in Python 3 in the past
8181
pyparsing.ParserElement.enablePackrat()

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
# The short X.Y version.
6363
version = '0.7'
6464
# The full version, including alpha/beta/rc tags.
65-
release = '0.7.4'
65+
release = '0.7.5'
6666

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

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"""
66
from setuptools import setup
77

8-
VERSION = '0.7.5a'
8+
VERSION = '0.7.5'
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

tests/test_cmd2.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323

2424
def test_ver():
25-
assert cmd2.__version__ == '0.7.5a'
25+
assert cmd2.__version__ == '0.7.5'
2626

2727

2828
def test_empty_statement(base_app):

0 commit comments

Comments
 (0)