From 7c6f4b3059b0140fc281fff3ba3e5d9f48079250 Mon Sep 17 00:00:00 2001 From: lajohn4747 Date: Mon, 13 Nov 2023 12:24:55 -0600 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.5.0=20=E2=86=92=200.5.1.dev?= =?UTF-8?q?0?= 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 4728fb6..5cc9aa5 100644 --- a/deepecho/__init__.py +++ b/deepecho/__init__.py @@ -2,7 +2,7 @@ __author__ = 'DataCebo, Inc.' __email__ = 'info@sdv.dev' -__version__ = '0.5.0' +__version__ = '0.5.1.dev0' __path__ = __import__('pkgutil').extend_path(__path__, __name__) from deepecho.demo import load_demo diff --git a/setup.cfg b/setup.cfg index 0081d2b..326e768 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.5.0 +current_version = 0.5.1.dev0 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 d5e0319..c219d66 100644 --- a/setup.py +++ b/setup.py @@ -112,6 +112,6 @@ test_suite='tests', tests_require=tests_require, url='https://github.com/sdv-dev/DeepEcho', - version='0.5.0', + version='0.5.1.dev0', zip_safe=False, )