diff --git a/mtor/__init__.py b/mtor/__init__.py index a23b340..5b4e0cb 100644 --- a/mtor/__init__.py +++ b/mtor/__init__.py @@ -11,7 +11,7 @@ from .workflows import ( warnings.filterwarnings("ignore") -__version__ = "0.1.0" +__version__ = "__version__ = '1.0.0'" def run_test(): diff --git a/setup.cfg b/setup.cfg index 908937a..2f7f4f6 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.0 +current_version = 1.0.0 commit = True tag = True @@ -15,5 +15,4 @@ replace = __version__ = '{new_version}' universal = 1 [aliases] -# Define setup.py command aliases here diff --git a/setup.py b/setup.py index bd6d01d..286b9eb 100644 --- a/setup.py +++ b/setup.py @@ -56,6 +56,6 @@ setup( packages=find_packages(include=["mtor"]), setup_requires=setup_requirements, url="ttps://git.cpi.imtek.uni-freiburg.de/holgi/mtor", - version="0.1.0", + version="version='1.0.0'", zip_safe=False, )