summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2017-08-02 16:55:03 -0400
committerTodd Leonhardt <todd.leonhardt@gmail.com>2017-08-02 16:55:03 -0400
commit11f14edd3ab4fb852a13574071fe616bbb41c720 (patch)
tree95e540371886ebc55c1f0948c805f9f98599ad8e
parent68d3aa6b748f2e5f0ca2101d92642a8844068871 (diff)
downloadcmd2-git-11f14edd3ab4fb852a13574071fe616bbb41c720.tar.gz
Updated CHANGES and bumped version in preparation for 0.7.6 release
-rw-r--r--CHANGES.md3
-rwxr-xr-xcmd2.py2
-rw-r--r--docs/conf.py2
-rwxr-xr-xsetup.py2
-rw-r--r--tests/test_cmd2.py2
5 files changed, 6 insertions, 5 deletions
diff --git a/CHANGES.md b/CHANGES.md
index 43225f44..3f7e07c2 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -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
-----
diff --git a/cmd2.py b/cmd2.py
index 6bfb86ad..ae057f92 100755
--- a/cmd2.py
+++ b/cmd2.py
@@ -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.
diff --git a/setup.py b/setup.py
index cf3877d6..2f81c390 100755
--- a/setup.py
+++ b/setup.py
@@ -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):