diff --git a/HISTORY.md b/HISTORY.md index 421254b..7354107 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,6 +1,11 @@ Release History =============== +0.1.3 (2022-12-08) +------------------ + +- Fix compatibility with MLFlow v2.0.1 #3 + 0.1.2 (2020-03-12) ------------------ diff --git a/comet_for_mlflow/__init__.py b/comet_for_mlflow/__init__.py index ce1e3e5..cd1b080 100644 --- a/comet_for_mlflow/__init__.py +++ b/comet_for_mlflow/__init__.py @@ -23,4 +23,4 @@ __author__ = """Boris Feld""" __email__ = "boris@comet.ml" -__version__ = "0.1.0" +__version__ = "0.1.3" diff --git a/setup.py b/setup.py index 944343a..387fdc1 100644 --- a/setup.py +++ b/setup.py @@ -42,6 +42,6 @@ packages=find_packages(include=["comet_for_mlflow", "comet_for_mlflow.*"]), test_suite="tests", url="https://github.com/comet-ml/comet-for-mlflow", - version="0.1.2", + version="0.1.3", zip_safe=False, )