From c44b1dbb2e1f1defe3ee99e5486368eed3d65187 Mon Sep 17 00:00:00 2001 From: Andrey Kislyuk Date: Thu, 19 Jan 2017 07:18:26 -0800 Subject: [PATCH] v1.8.0 --- Changes.rst | 38 ++++++++++++++++++++++++++++++++++++++ setup.py | 2 +- 2 files changed, 39 insertions(+), 1 deletion(-) diff --git a/Changes.rst b/Changes.rst index e05c3cac..5bd1a4ea 100644 --- a/Changes.rst +++ b/Changes.rst @@ -1,3 +1,41 @@ +Changes for v1.8.0 (2017-01-19) +=============================== + +This release contains work by @evanunderscore with numerous improvements +to the handling of special characters in completions. + +- Simplify nospace handling in global completion (#195) + +- Specially handle all characters in COMP\_WORDBREAKS (#187) + +- Use setuptools tests-require directive, fixes #186 + +- Complete files using the specified interpreter (#192) + +- Fix completion for scripts run via python (#191) + +- Clarify argument to register-python-argcomplete (#190) + +- Fix handling of commas and other special chars (#172); handle more + special characters (#189) + +- Fix handling of special characters in tcsh (#188) + +- Update my\_shlex to Python 3.6 version (#184) + +- Fix additional trailing space in exact matches (#183) + +- Adjust tests to handle development environments (#180) + +- Fix tcsh tests on OSX (#177); Update bash on OSX (#176); Check output + of test setup command (#179) + +- Optionally disable duplicated flags (#143) + +- Add default\_completer option to CompletionFinder.\ **call** (#167) + +- Let bash add or suppress trailing space (#159) + Changes for v1.7.0 (2016-11-30) =============================== diff --git a/setup.py b/setup.py index 32f52de2..2c2b97c3 100755 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ setup( name='argcomplete', - version='1.7.0', + version='1.8.0', url='https://github.com/kislyuk/argcomplete', license='Apache Software License', author='Andrey Kislyuk',