From b9d46db1a2d4f9868e5901b7cbcbe58f194053b2 Mon Sep 17 00:00:00 2001 From: Antoni Baum Date: Mon, 21 Mar 2022 09:27:27 +0100 Subject: [PATCH 1/2] Bump version to 2.3.8 --- pycaret/utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pycaret/utils.py b/pycaret/utils.py index c933e35f4..46fc83ca5 100644 --- a/pycaret/utils.py +++ b/pycaret/utils.py @@ -5,8 +5,8 @@ import pandas as pd import functools -version_ = "2.3.7" -nightly_version_ = "2.3.7" +version_ = "2.3.8" +nightly_version_ = "2.3.8" __version__ = version_ From 999badfd22c7b16c3a988a048661b85ace5b845b Mon Sep 17 00:00:00 2001 From: Antoni Baum Date: Mon, 21 Mar 2022 11:26:01 +0100 Subject: [PATCH 2/2] Bump version --- CHANGELOG.md | 4 ++++ README.md | 2 +- setup.py | 2 +- setup_nightly.py | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bd9391f76..ca73eb595 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to this project will be documented in this file.

+#### Release: PyCaret 2.3.8 | Release Date: March 21st, 2022 (BUG FIXES) +- Fixed `dashboard_logger` key error during `setup` (https://github.com/pycaret/pycaret/pull/2311) +


+ #### Release: PyCaret 2.3.7 | Release Date: March 20th, 2022 (NEW FEATURES, BUG FIXES) - Fugue integration - thanks to @goodwanghan (https://github.com/pycaret/pycaret/pull/2035) - Added W&B experiment logger - thanks to @AyushExel (https://github.com/pycaret/pycaret/pull/2231) diff --git a/README.md b/README.md index f5e906e34..211aae5cb 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ drawing **An open-source, low-code machine learning library in Python**
-:rocket: **Version 2.3.7 out now!** [Check out the release notes here](https://github.com/pycaret/pycaret/releases). +:rocket: **Version 2.3.8 out now!** [Check out the release notes here](https://github.com/pycaret/pycaret/releases).

Official • diff --git a/setup.py b/setup.py index 20d9dce3c..a143ac372 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ def readme(): setup( name="pycaret", - version="2.3.7", + version="2.3.8", description="PyCaret - An open source, low-code machine learning library in Python.", long_description=readme(), long_description_content_type="text/markdown", diff --git a/setup_nightly.py b/setup_nightly.py index 4286ac03c..cfe5fc1a1 100644 --- a/setup_nightly.py +++ b/setup_nightly.py @@ -4,7 +4,7 @@ from setuptools import setup, find_packages import time -nightly_version = "2.3.7" +nightly_version = "2.3.8" nightly_readme = f"This is a nightly version of the [PyCaret](https://pypi.org/project/pycaret/) library, intended as a preview of the upcoming {nightly_version} version. It may contain unstable and untested code.\n"