diff --git a/eox_hooks/__init__.py b/eox_hooks/__init__.py index 4d2ecde..37f2576 100644 --- a/eox_hooks/__init__.py +++ b/eox_hooks/__init__.py @@ -4,4 +4,4 @@ from __future__ import unicode_literals -__version__ = '0.1.0' +__version__ = '0.2.0' diff --git a/setup.cfg b/setup.cfg index 2f52255..77faa26 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,3 +1,8 @@ +[bumpversion] +current_version = 0.2.0 +commit = True +tag = True + [isort] default_section = THIRDPARTY known_first_party = eox_hooks @@ -11,9 +16,10 @@ max-line-length = 120 statistics = True [pylint] -ignore=CVS +ignore = CVS + [MESSAGES CONTROL] -enable = +enable = line-too-long, syntax-error, init-is-generator, @@ -208,7 +214,7 @@ enable = useless-suppression, bad-inline-option, deprecated-pragma, -disable = +disable = bad-continuation, invalid-name, misplaced-comparison-constant, @@ -284,9 +290,4 @@ disable = xrange-builtin, zip-builtin-not-iterating, -[bumpversion] -current_version = 0.1.0 -commit = True -tag = True - [bumpversion:file:eox_hooks/__init__.py]