Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 5 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -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
------------------

Expand Down
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions click_plugins/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down