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',