diff --git a/setup.cfg b/setup.cfg index 445c71f..6f7fd89 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.0 +current_version = 0.2.0 commit = True tag = True @@ -8,7 +8,7 @@ tag = True [flake8] max-line-length = 100 max-complexity = 10 -exclude = +exclude = .git, .idea, .tox, @@ -22,3 +22,4 @@ exclude = setup.py, runtests.py, server.py + diff --git a/vo/__init__.py b/vo/__init__.py index a185d54..4e74220 100644 --- a/vo/__init__.py +++ b/vo/__init__.py @@ -4,5 +4,5 @@ __author__ = 'Paweł Zadrożny' __copyright__ = 'Copyright (c) 2017, Pawelzny' -__version__ = '0.1.0' +__version__ = '0.2.0' __all__ = ['Value', 'ValueModificationForbidden']