diff --git a/docs/conf.py b/docs/conf.py index d23215d..9a4afd2 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -15,7 +15,7 @@ import os import sys -__version__ = '1.0.0' +__version__ = '1.0.1' sys.path.insert(0, os.path.abspath('..')) diff --git a/dotty_dict/__init__.py b/dotty_dict/__init__.py index b38c6fb..1e56422 100644 --- a/dotty_dict/__init__.py +++ b/dotty_dict/__init__.py @@ -4,5 +4,5 @@ __author__ = 'Paweł Zadrożny' __copyright__ = 'Copyright (c) 2017, Paweł Zadrożny' __email__ = 'pawel.zny@gmail.com' -__version__ = '1.0.0' +__version__ = '1.0.1' __all__ = ['Dotty', 'dotty'] diff --git a/setup.cfg b/setup.cfg index 53bc964..6c127d2 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.0.0 +current_version = 1.0.1 commit = True tag = True @@ -13,7 +13,7 @@ max-complexity = 8 statistics = true ignore = B101,E501 select = B,B902,B950,C,E,F,G,H,I,N,RST,W -exclude = +exclude = .cache .circleci .git @@ -33,3 +33,4 @@ exclude = [tool:pytest] addopts = --verbose python_files = tests/*.py +