From 47f0ac7b22dac2e60b8e2dfd9bea082984def590 Mon Sep 17 00:00:00 2001 From: "W. Harrison Wright" Date: Fri, 8 Feb 2019 18:29:01 -0600 Subject: [PATCH] Bump version number - I broke 1.0.1 on pypi, and deleted it, without knowing you can't redeploy that same version number. Oops. Now we're at 1.0.2 --- click_command_tree.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/click_command_tree.py b/click_command_tree.py index 97485b7..1d07e79 100644 --- a/click_command_tree.py +++ b/click_command_tree.py @@ -1,6 +1,6 @@ import click -__version__ = '1.0.1' +__version__ = '1.0.2' @click.command(name='tree') diff --git a/setup.py b/setup.py index 822a5d9..8475213 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( name='click-command-tree', - version='1.0.1', + version='1.0.2', description='click plugin to show the command tree of your CLI', long_description=README, long_description_content_type='text/markdown',