From: W. Trevor King Date: Mon, 27 Jan 2014 18:15:43 +0000 (-0800) Subject: Bump to version 0.6 X-Git-Tag: v0.6^0 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=cd7751d74780f3c73d843b46bff1182eae364114;p=update-copyright.git Bump to version 0.6 Changes since 0.5: * Dropped Bazaar support. * Fixed Mercurial support for Python 3 (by shelling out to hg). * Adjusted date ranges so the final date is the last year a file was patched, and not the current year. This avoids bumping copyright years when there were no changes. --- diff --git a/update_copyright/__init__.py b/update_copyright/__init__.py index e4abae2..553542f 100644 --- a/update_copyright/__init__.py +++ b/update_copyright/__init__.py @@ -29,7 +29,7 @@ versions, so here it is as a stand-alone package. from .log import get_basic_logger as _get_basic_logger -__version__ = '0.5' +__version__ = '0.6' LOG = _get_basic_logger(name='update-copyright')