Skip to content

Commit 9565ad7

Browse files
authored
Merge pull request #22 from click-contrib/v1.0.4
Release v1.0.4
2 parents 4fba917 + 8473289 commit 9565ad7

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

CHANGES.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
Changelog
22
=========
33

4+
1.0.4 - 2018-09-15
5+
------------------
6+
7+
- 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.
8+
9+
410
1.0.3 - 2016-01-05
511
------------------
612

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
New BSD License
22

3-
Copyright (c) 2015-2016, Kevin D. Wurster, Sean C. Gillies
3+
Copyright (c) 2015-2018, Kevin D. Wurster, Sean C. Gillies
44
All rights reserved.
55

66
Redistribution and use in source and binary forms, with or without

click_plugins/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@ def subcommand(arg):
2424
from click_plugins.core import with_plugins
2525

2626

27-
__version__ = '1.0.3'
27+
__version__ = '1.0.4'
2828
__author__ = 'Kevin Wurster, Sean Gillies'
2929
3030
__source__ = 'https://github.com/click-contrib/click-plugins'
3131
__license__ = '''
3232
New BSD License
3333
34-
Copyright (c) 2015-2016, Kevin D. Wurster, Sean C. Gillies
34+
Copyright (c) 2015-2018, Kevin D. Wurster, Sean C. Gillies
3535
All rights reserved.
3636
3737
Redistribution and use in source and binary forms, with or without

0 commit comments

Comments
 (0)