From ad53bd6c060691a2337f30ac6c1af88351c9f5c2 Mon Sep 17 00:00:00 2001 From: Andrew Montanez Date: Tue, 2 May 2023 13:08:31 -0500 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.4.1.dev1=20=E2=86=92=200.4.?= =?UTF-8?q?1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- deepecho/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/deepecho/__init__.py b/deepecho/__init__.py index 461f883..c263f3e 100644 --- a/deepecho/__init__.py +++ b/deepecho/__init__.py @@ -2,7 +2,7 @@ __author__ = 'DataCebo, Inc.' __email__ = 'info@sdv.dev' -__version__ = '0.4.1.dev1' +__version__ = '0.4.1' __path__ = __import__('pkgutil').extend_path(__path__, __name__) from deepecho.demo import load_demo diff --git a/setup.cfg b/setup.cfg index 26c6464..9448a71 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.4.1.dev1 +current_version = 0.4.1 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+)(?P\d+))? diff --git a/setup.py b/setup.py index 8327964..3bc1317 100644 --- a/setup.py +++ b/setup.py @@ -110,6 +110,6 @@ test_suite='tests', tests_require=tests_require, url='https://github.com/sdv-dev/DeepEcho', - version='0.4.1.dev1', + version='0.4.1', zip_safe=False, )