diff --git a/docs/conf.py b/docs/conf.py index 40a0edf..aa26267 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -15,7 +15,7 @@ import os import sys -__version__ = '0.0.0' +__version__ = '0.1.0' sys.path.insert(0, os.path.abspath('..')) diff --git a/eeee/__init__.py b/eeee/__init__.py index 5149224..93278c1 100644 --- a/eeee/__init__.py +++ b/eeee/__init__.py @@ -5,5 +5,5 @@ __author__ = 'Paweł Zadrożny' __copyright__ = 'Copyright (c) 2017, Pawelzny' -__version__ = '0.0.0' +__version__ = '0.1.0' __all__ = ['Event', 'Loop', 'Publisher', 'subscribe'] diff --git a/setup.cfg b/setup.cfg index 6fd7975..25126e3 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.0.0 +current_version = 0.1.0 commit = True tag = True @@ -10,7 +10,7 @@ tag = True [flake8] max-line-length = 100 max-complexity = 4 -exclude = +exclude = .cache .circleci .git @@ -30,3 +30,4 @@ exclude = [tool:pytest] addopts = --verbose python_files = tests/*.py +