diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2017-08-02 16:55:03 -0400 |
---|---|---|
committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2017-08-02 16:55:03 -0400 |
commit | 11f14edd3ab4fb852a13574071fe616bbb41c720 (patch) | |
tree | 95e540371886ebc55c1f0948c805f9f98599ad8e | |
parent | 68d3aa6b748f2e5f0ca2101d92642a8844068871 (diff) | |
download | cmd2-git-11f14edd3ab4fb852a13574071fe616bbb41c720.tar.gz |
Updated CHANGES and bumped version in preparation for 0.7.6 release
-rw-r--r-- | CHANGES.md | 3 | ||||
-rwxr-xr-x | cmd2.py | 2 | ||||
-rw-r--r-- | docs/conf.py | 2 | ||||
-rwxr-xr-x | setup.py | 2 | ||||
-rw-r--r-- | tests/test_cmd2.py | 2 |
5 files changed, 6 insertions, 5 deletions
@@ -4,7 +4,7 @@ rerNews 0.7.6 ----- -*Release date: TBD* +*Release date: 2017-08-TBD* * Bug Fixes * Case-sensitive command parsing was completely broken and has been fixed @@ -14,6 +14,7 @@ rerNews * Enhancements * Enhanced tab-completion of cmd2 command names to support case-insensitive completion * Added an example showing how to remove unused commands + * Improved how transcript testing handles prompts with ANSI escape codes by stripping them 0.7.5 ----- @@ -75,7 +75,7 @@ try: except ImportError: pass -__version__ = '0.7.6a' +__version__ = '0.7.6' # Pyparsing enablePackrat() can greatly speed up parsing, but problems have been seen in Python 3 in the past pyparsing.ParserElement.enablePackrat() diff --git a/docs/conf.py b/docs/conf.py index 296aad60..da442331 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -62,7 +62,7 @@ author = 'Catherine Devlin and Todd Leonhardt' # The short X.Y version. version = '0.7' # The full version, including alpha/beta/rc tags. -release = '0.7.5' +release = '0.7.6' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. @@ -5,7 +5,7 @@ Setuptools setup file, used to install or test 'cmd2' """ from setuptools import setup -VERSION = '0.7.6a' +VERSION = '0.7.6' 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 diff --git a/tests/test_cmd2.py b/tests/test_cmd2.py index e2e54bae..f41b7ed1 100644 --- a/tests/test_cmd2.py +++ b/tests/test_cmd2.py @@ -22,7 +22,7 @@ from conftest import run_cmd, normalize, BASE_HELP, HELP_HISTORY, SHORTCUTS_TXT, def test_ver(): - assert cmd2.__version__ == '0.7.6a' + assert cmd2.__version__ == '0.7.6' def test_empty_statement(base_app): |