From c326fd4607d1b119600a4c81e00987565d527a32 Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Sat, 8 Oct 2016 12:14:23 -0700 Subject: [PATCH] MAINT: Bump version (0.0.5) and update CHANGELOG. (#86) --- CHANGELOG.md | 50 +++++++++++++++++++++++++++++++++++++++++++++++ q2cli/__init__.py | 2 +- setup.py | 4 ++-- 3 files changed, 53 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 141ac884..332e9f7a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,53 @@ +# Version 0.0.5 (2016-10-08) + +* ENH: easier tab completion activation: `source tab-qiime` (#84) + +* ENH: update language for qiime tools view (#85) + +* ENH: update language for qiime tools view (#83) + +* MAINT: update peek to match framework (#82) + +* REF: set root command help using decorator instead of within constructor (#81) + +* ENH: fast Bash tab completion (#79) + +* ENH/BUG: add --verbose flag; fix two --cmd-config bugs (#78) + +* BUG: fixes broken boolean flag handler (#77) + +* ENH: add `qiime info --citations` flag, remove `qiime tools citations` (#76) + +* ENH: `qiime tools peek` (#75) + +* ENH: `qiime tools extract` displays extracted directory (#74) + +* ENH: faster `qiime --version` flag with shorter output (#73) + +* ENH: cached CLI state for performance improvements (#67) + +* ENH: more descriptive option help text (e.g. required vs optional) (#66) + +* ENH: adds support for None as a default value (#65) + +* ENH: added defaults for regular parameters (#54) + +* TST: update unit tests to work with archive version 0.3.0 (#62) + +* ENH: added bool as for #52 (#55) + +* ENH: Optional source format on import_data. (#57) + +* TST: Update test runner for transformers (#56) + +* ENH/REF/MAINT: use new "actions" API; flexible support for output file extensions + +* BUG: fixed duplicate command on action + +* ENH: Adds `cmd-config` option to cli + +* REF: Uses "Handlers" to interface with click allowing better parsing/errors + # Version 0.0.3 (2016-08-08) * A new command has been added, ``qiime tools plugin-init``, which initializes a new QIIME 2 plugin. This simplifies plugin development by providing a working plugin template that can serve as the basis for a new QIIME 2 plugin. This is developed using [cookiecutter](https://github.com/audreyr/cookiecutter). diff --git a/q2cli/__init__.py b/q2cli/__init__.py index 84be4729..bda9607e 100644 --- a/q2cli/__init__.py +++ b/q2cli/__init__.py @@ -6,4 +6,4 @@ # The full license is in the file COPYING.txt, distributed with this software. # ---------------------------------------------------------------------------- -__version__ = '0.0.3' +__version__ = '0.0.5' diff --git a/setup.py b/setup.py index bd68e1a5..c5440a45 100644 --- a/setup.py +++ b/setup.py @@ -10,11 +10,11 @@ setup( name='q2cli', - version='0.0.3', + version='0.0.5', license='BSD-3-Clause', packages=find_packages(), include_package_data=True, - install_requires=['click', 'qiime >= 2.0.2', 'pip'], + install_requires=['click', 'qiime >= 2.0.5', 'pip'], scripts=['bin/tab-qiime'], entry_points=''' [console_scripts]