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, )