From 1d83534754611f1ea7ca3aba2241acfda55448ca Mon Sep 17 00:00:00 2001 From: Derek Bekoe Date: Wed, 27 Sep 2017 11:39:00 -0700 Subject: [PATCH] Version 0.2.0 release --- HISTORY.rst | 6 +++--- setup.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 8a07205..027cf0d 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,11 +3,11 @@ Release History =============== -unreleased -^^^^^^^^^^ +0.2.0 (2017-09-27) +^^^^^^^^^^^^^^^^^^ * Support command level and argument level validators. -* knack.commands.CLICommandsLoader no accepts a `command_cls` argument so you can provide your own `CLICommand` class. +* knack.commands.CLICommandsLoader now accepts a `command_cls` argument so you can provide your own `CLICommand` class. * logging: make determine_verbose_level private method. * Allow overriding of NAMED_ARGUMENTS * Only pass valid argparse kwargs to argparse.ArgumentParser.add_argument and ignore the rest diff --git a/setup.py b/setup.py index 7d3ca64..f1b5dee 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ from codecs import open from setuptools import setup, find_packages -VERSION = '0.1.1' +VERSION = '0.2.0' DEPENDENCIES = [ 'argcomplete',