Skip to content

Commit d092e61

Browse files
committed
Bump version to 0.7.5a
1 parent 58af11d commit d092e61

File tree

5 files changed

+13
-36
lines changed

5 files changed

+13
-36
lines changed

CHANGES.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
News
22
====
33

4+
0.7.5
5+
-----
6+
7+
*Release date: TBD*
8+
9+
410
0.7.4
511
-----
612

cmd2.py

Lines changed: 4 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
except ImportError:
8585
pass
8686

87-
__version__ = '0.7.4'
87+
__version__ = '0.7.5a'
8888

8989
# Pyparsing enablePackrat() can greatly speed up parsing, but problems have been seen in Python 3 in the past
9090
pyparsing.ParserElement.enablePackrat()
@@ -2270,36 +2270,7 @@ def __nonzero__(self):
22702270
if __name__ == '__main__':
22712271
# If run as the main application, simply start a bare-bones cmd2 application with only built-in functionality.
22722272

2273-
# Set this to True to include the ipy command if IPython is installed, which supports advanced interactive debugging
2274-
# of your application via introspection on self.
2275-
# include_ipy = False
2276-
#
2277-
# app = Cmd(use_ipython=include_ipy)
2278-
# app.cmdloop()
2279-
2280-
2281-
class HelpApp(Cmd):
2282-
"""Class for testing custom help_* methods which override docstring help."""
2283-
2284-
def __init__(self, *args, **kwargs):
2285-
# Need to use this older form of invoking super class constructor to support Python 2.x and Python 3.x
2286-
Cmd.__init__(self, *args, **kwargs)
2287-
2288-
def do_squat(self, arg):
2289-
"""This docstring help will never be shown because the help_squat method overrides it."""
2290-
pass
2291-
2292-
def help_squat(self):
2293-
self.stdout.write('This command does diddly squat...\n')
2294-
2295-
def do_edit(self, arg):
2296-
"""This overrides the edit command and does nothing."""
2297-
pass
2298-
2299-
# This command will be in the "undocumented" section of the help menu
2300-
def do_undoc(self, arg):
2301-
pass
2302-
2303-
2304-
app = HelpApp()
2273+
# Set "use_iptyhon" to True to include the ipy command if IPython is installed, which supports advanced interactive
2274+
# debugging of your application via introspection on self.
2275+
app = Cmd(use_ipython=False)
23052276
app.cmdloop()

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.7'
6464
# The full version, including alpha/beta/rc tags.
65-
release = '0.7.0'
65+
release = '0.7.4'
6666

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

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"""
66
from setuptools import setup
77

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323

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

2727

2828
def test_empty_statement(base_app):

0 commit comments

Comments
 (0)