From faccc40a6600eb014cba62f455e72a4107ed7a60 Mon Sep 17 00:00:00 2001 From: Roman Zlobin Date: Tue, 21 Nov 2023 19:51:36 +0300 Subject: [PATCH] update version to 0.6.3 --- dff/__init__.py | 2 +- docs/source/conf.py | 2 +- makefile | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dff/__init__.py b/dff/__init__.py index 091c40440..64096bbbb 100644 --- a/dff/__init__.py +++ b/dff/__init__.py @@ -3,7 +3,7 @@ __author__ = "Denis Kuznetsov" __email__ = "kuznetsov.den.p@gmail.com" -__version__ = "0.6.2" +__version__ = "0.6.3" import nest_asyncio diff --git a/docs/source/conf.py b/docs/source/conf.py index bc9c0af3d..e445f0eaa 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.6.2" +release = "0.6.3" # -- General configuration --------------------------------------------------- diff --git a/makefile b/makefile index ca568c1b2..97c51b1c6 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.6.2 +CURRENT_VERSION = 0.6.3 TEST_COVERAGE_THRESHOLD=95 TEST_ALLOW_SKIP=all # for more info, see tests/conftest.py diff --git a/setup.py b/setup.py index 3172a7819..c83f481b7 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.6.2", + version="0.6.3", description=description, long_description=long_description, long_description_content_type="text/markdown",