diff --git a/dff/__init__.py b/dff/__init__.py index 9cadcc2f1..1e39010f4 100644 --- a/dff/__init__.py +++ b/dff/__init__.py @@ -4,7 +4,7 @@ __author__ = "Denis Kuznetsov" __email__ = "kuznetsov.den.p@gmail.com" -__version__ = "0.5.0" +__version__ = "0.6.0" import nest_asyncio diff --git a/docs/source/conf.py b/docs/source/conf.py index 1cb8123b2..4662549f2 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -17,7 +17,7 @@ author = "DeepPavlov" # The full version, including alpha/beta/rc tags -release = "0.5.0" +release = "0.6.0" # -- General configuration --------------------------------------------------- diff --git a/makefile b/makefile index c243685dd..b2941b236 100644 --- a/makefile +++ b/makefile @@ -5,7 +5,7 @@ SHELL = /bin/bash PYTHON = python3 VENV_PATH = venv VERSIONING_FILES = setup.py makefile docs/source/conf.py dff/__init__.py -CURRENT_VERSION = 0.5.0 +CURRENT_VERSION = 0.6.0 TEST_COVERAGE_THRESHOLD=95 TEST_ALLOW_SKIP=all # for more info, see tests/conftest.py diff --git a/setup.py b/setup.py index e48a1e625..010f0ba89 100644 --- a/setup.py +++ b/setup.py @@ -216,7 +216,7 @@ def merge_req_lists(*req_lists: List[str]) -> List[str]: setup( name="dff", - version="0.5.0", + version="0.6.0", description=description, long_description=long_description, long_description_content_type="text/markdown",