summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES.rst7
-rwxr-xr-xsetup.py2
2 files changed, 8 insertions, 1 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index 2cd4eb90..b873df3d 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -37,3 +37,10 @@ News
* better editor checking (by Ian Cordascu)
+0.6.9
+-----
+
+* Support Python 3 input()
+* Fix subprocess.mswindows bug
+* Add Python3.6 support
+* Drop distutils from setup.py
diff --git a/setup.py b/setup.py
index a296edec..54e156e9 100755
--- a/setup.py
+++ b/setup.py
@@ -6,7 +6,7 @@ install_requires = ['pyparsing >= 2.0.1']
setup(
name="cmd2",
- version="0.6.9a",
+ version="0.6.9",
py_modules=["cmd2"],
use_2to3=True,