From 92df979d50e6ed64778252ba574033cc6f660550 Mon Sep 17 00:00:00 2001 From: Andrey Kislyuk Date: Thu, 20 Oct 2016 15:27:23 -0700 Subject: [PATCH] v1.6.0 --- Changes.rst | 16 ++++++++++++++++ setup.py | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/Changes.rst b/Changes.rst index 9f788fbe..925cb175 100644 --- a/Changes.rst +++ b/Changes.rst @@ -1,3 +1,19 @@ +Changes for v1.6.0 (2016-10-20) +=============================== + +- Add support for tcsh (#155) + +- Fix handling of unquoted completions containing $ (#154) + +- Don't insert unnecessary leading quote char in completions (#152) + +- Fix parser reuse with positional arguments (#149) + +- Tests: Add simple pexpect tests for bash (#153); Add test case to + verify #20 is fixed (#148) + +- Thanks to @davvid and @evanunderscore for their work on this release. + Changes for v1.5.1 (2016-10-11) =============================== diff --git a/setup.py b/setup.py index cf3ab54d..8399c8c5 100755 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ setup( name='argcomplete', - version='1.5.1', + version='1.6.0', url='https://github.com/kislyuk/argcomplete', license='Apache Software License', author='Andrey Kislyuk',