diff --git a/.travis.yml b/.travis.yml index 4dfce27..9969674 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,17 +1,15 @@ -language: python - sudo: false -cache: - directories: - - ~/.cache/pip +dist: xenial + +language: python +cache: pip python: - 2.7 - 3.4 - 3.5 - 3.6 - - pypy - - pypy3 + - 3.7 install: - pip install coveralls diff --git a/CHANGES.md b/CHANGES.md index 01fd2d6..cf8eb03 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,6 +1,11 @@ Changelog ========= +1.0.5 - 2019-04-03 +------------------ + +- Fix an issue where a broken command's traceback would not be emitted - https://github.com/click-contrib/click-plugins/issues/25 + 1.0.4 - 2018-09-15 ------------------ diff --git a/LICENSE.txt b/LICENSE.txt index 2c51a54..8fbd353 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,6 +1,6 @@ New BSD License -Copyright (c) 2015-2018, Kevin D. Wurster, Sean C. Gillies +Copyright (c) 2015-2019, 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 e472c58..ffd6571 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.4' +__version__ = '1.0.5' __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-2018, Kevin D. Wurster, Sean C. Gillies +Copyright (c) 2015-2019, Kevin D. Wurster, Sean C. Gillies All rights reserved. Redistribution and use in source and binary forms, with or without