From: W. Trevor King Date: Sat, 28 Mar 2015 20:10:41 +0000 (-0700) Subject: Bump to version 0.6.2 X-Git-Tag: v0.6.2^0 X-Git-Url: http://git.tremily.us/?p=update-copyright.git;a=commitdiff_plain;h=87352a043d30d2812c0db3d65676b9766957773b Bump to version 0.6.2 Changes since 0.6.1: * Fallback to directory name if project.name isn't set * Require project.vcs * Convert parser access to use the mapping protocol * README: Switch from {section}/{option} to {section}.{option} * setup.py: Mention Python 3.4 compatibility --- diff --git a/update_copyright/__init__.py b/update_copyright/__init__.py index 5374dcf..f9aad7b 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.6.1' +__version__ = '0.6.2' LOG = _get_basic_logger(name='update-copyright')