diff --git a/CHANGES.md b/CHANGES.md index 58b1553..01fd2d6 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,6 +1,12 @@ Changelog ========= +1.0.4 - 2018-09-15 +------------------ + +- Preemptive fix for a breaking change in Click v7. CLI command names generated from functions with underscores will have dashes instead of underscores. See https://github.com/click-contrib/click-plugins/issues/19. + + 1.0.3 - 2016-01-05 ------------------ diff --git a/LICENSE.txt b/LICENSE.txt index ce22248..2c51a54 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,6 +1,6 @@ New BSD License -Copyright (c) 2015-2016, Kevin D. Wurster, Sean C. Gillies +Copyright (c) 2015-2018, Kevin D. Wurster, Sean C. Gillies All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/click_plugins/__init__.py b/click_plugins/__init__.py index 8f79ae2..e472c58 100644 --- a/click_plugins/__init__.py +++ b/click_plugins/__init__.py @@ -24,14 +24,14 @@ def subcommand(arg): from click_plugins.core import with_plugins -__version__ = '1.0.3' +__version__ = '1.0.4' __author__ = 'Kevin Wurster, Sean Gillies' __email__ = 'wursterk@gmail.com, sean.gillies@gmail.com' __source__ = 'https://github.com/click-contrib/click-plugins' __license__ = ''' New BSD License -Copyright (c) 2015-2016, Kevin D. Wurster, Sean C. Gillies +Copyright (c) 2015-2018, Kevin D. Wurster, Sean C. Gillies All rights reserved. Redistribution and use in source and binary forms, with or without