Skip to content

Commit

Permalink
Merge pull request #2312 from Yard1/bump_to_2.3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
Yard1 committed Mar 21, 2022
2 parents c6f6f90 + 999badf commit a2436a1
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
All notable changes to this project will be documented in this file.
<br/><br/>

#### 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)
<br/><br/><br/>

#### 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)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<img src="docs/images/logo.png" alt="drawing" width="200"/>

**An open-source, low-code machine learning library in Python** </br>
: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).

<p align="center">
<a href="https://www.pycaret.org">Official</a> •
Expand Down
4 changes: 2 additions & 2 deletions pycaret/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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_

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion setup_nightly.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down

0 comments on commit a2436a1

Please sign in to comment.