From 4bb4cb0cac9357b359ad5b95fc173a9fc78fbdb7 Mon Sep 17 00:00:00 2001 From: Toni Date: Wed, 20 Dec 2023 14:16:29 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=201.3.0=20=E2=86=92=201.3.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dtw/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dtw/__init__.py b/dtw/__init__.py index afb3a41..e186b09 100644 --- a/dtw/__init__.py +++ b/dtw/__init__.py @@ -9,7 +9,7 @@ __author__ = """Toni Giorgino""" __email__ = 'toni.giorgino@gmail.com' -__version__ = '1.3.0' +__version__ = '1.3.1' # There are no comments in this package because it mirrors closely the R sources. diff --git a/setup.cfg b/setup.cfg index 84180df..a43d79b 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.3.0 +current_version = 1.3.1 commit = True tag = True diff --git a/setup.py b/setup.py index 6a4389a..ebe8913 100644 --- a/setup.py +++ b/setup.py @@ -53,6 +53,6 @@ ext_modules=cythonize([Extension('dtw._dtw_utils', sources=['dtw/_dtw_utils.pyx', 'dtw/dtw_core.c'])]), url='https://DynamicTimeWarping.github.io', - version='1.3.0', + version='1.3.1', zip_safe=False, )