diff --git a/.bumpversion.cfg b/.bumpversion.cfg index d3eb243e..2a12425a 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.1.0b1 +current_version = 1.1.0 commit = False tag = False allow_dirty = False diff --git a/setup.py b/setup.py index d8d008d7..8cccc4f3 100644 --- a/setup.py +++ b/setup.py @@ -67,7 +67,7 @@ def relaxed_requirements_from_file(path): url="https://github.com/aai-institute/sensAI", packages=find_namespace_packages(where="src"), include_package_data=True, - version='1.1.0b1', + version='1.1.0', description='The Python library for sensible AI', install_requires=relaxed_requirements_from_file("requirements.txt"), dependency_links=["https://download.pytorch.org/whl/torch_stable.html"], diff --git a/src/sensai/__init__.py b/src/sensai/__init__.py index a970fc24..8c2df351 100644 --- a/src/sensai/__init__.py +++ b/src/sensai/__init__.py @@ -16,7 +16,7 @@ TensorToTensorClassificationModel, TensorToScalarClassificationModel from .vector_model import VectorModelBase, VectorModel, VectorRegressionModel, VectorClassificationModel -__version__ = "1.1.0b1" +__version__ = "1.1.0" # The following submodules are not imported by default to avoid necessarily requiring their dependencies: # tensorflow