From c52366a6eab3e241041019e592dfc4299ddebf60 Mon Sep 17 00:00:00 2001 From: Boris Feld Date: Thu, 8 Dec 2022 19:19:28 +0100 Subject: [PATCH] Bump version to 0.1.3 --- HISTORY.md | 5 +++++ comet_for_mlflow/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) 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, )