From 01e29508a13c72aca0941efed71f9794a46c5bc3 Mon Sep 17 00:00:00 2001 From: Kevin Wurster Date: Wed, 3 Apr 2019 22:32:13 -0400 Subject: [PATCH 1/4] Update year in license. --- LICENSE.txt | 2 +- click_plugins/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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..e23287e 100644 --- a/click_plugins/__init__.py +++ b/click_plugins/__init__.py @@ -31,7 +31,7 @@ def subcommand(arg): __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 From d3e620ba402b0cdf41f5511d110bcec38310fe9d Mon Sep 17 00:00:00 2001 From: Kevin Wurster Date: Wed, 3 Apr 2019 22:36:56 -0400 Subject: [PATCH 2/4] Test on Python 3.7 and drop pypy. Travis seems to not support pypy on Xenial. It seems more important to test Python 3.7 than pypy given the relative simplicity of this project. --- .travis.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 4dfce27..937eebe 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,8 @@ +sudo: false +dist: xenial + language: python -sudo: false cache: directories: - ~/.cache/pip @@ -10,8 +12,7 @@ python: - 3.4 - 3.5 - 3.6 - - pypy - - pypy3 + - 3.7 install: - pip install coveralls From 602f5a335e82239a89db6b063008edf579f38497 Mon Sep 17 00:00:00 2001 From: Kevin Wurster Date: Wed, 3 Apr 2019 22:37:24 -0400 Subject: [PATCH 3/4] Use recommended caching strategy. --- .travis.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 937eebe..9969674 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,10 +2,7 @@ sudo: false dist: xenial language: python - -cache: - directories: - - ~/.cache/pip +cache: pip python: - 2.7 From 3bf121f0e1bfc5250673f6857c0e8eb556494fe1 Mon Sep 17 00:00:00 2001 From: Kevin Wurster Date: Wed, 3 Apr 2019 22:33:55 -0400 Subject: [PATCH 4/4] Release v1.0.5 --- CHANGES.md | 5 +++++ click_plugins/__init__.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) 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/click_plugins/__init__.py b/click_plugins/__init__.py index e23287e..ffd6571 100644 --- a/click_plugins/__init__.py +++ b/click_plugins/__init__.py @@ -24,7 +24,7 @@ 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'