diff --git a/docs/conf.py b/docs/conf.py index 4a981a2b1..920b0a845 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -31,7 +31,7 @@ version, __version__ = ('0.7',) * 2 # The full version, including alpha/beta/rc tags -release = '0.7.1' +release = '0.7.2' # -- General configuration --------------------------------------------------- diff --git a/finetune/__init__.py b/finetune/__init__.py index 24f2064f1..bf56776f8 100644 --- a/finetune/__init__.py +++ b/finetune/__init__.py @@ -17,7 +17,7 @@ from finetune.target_models.mtl import MultiTask from finetune.target_models.deployment_model import DeploymentModel -__version__, VERSION, version = ("0.7.1",) * 3 +__version__, VERSION, version = ("0.7.2",) * 3 # Logging configuration os.environ["TF_CPP_MIN_LOG_LEVEL"] = "2" diff --git a/setup.py b/setup.py index 07c2dde35..280bed2b2 100644 --- a/setup.py +++ b/setup.py @@ -26,7 +26,7 @@ setup( name="finetune", packages=find_packages(), - version="0.7.1", + version="0.7.2", install_requires=REQUIREMENTS, extras_require={ "tf": ["tensorflow>=1.13.0"],