Skip to content

Commit

Permalink
Bump version to 2.3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
Yard1 committed Apr 10, 2022
1 parent 4c92e16 commit 641ed85
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 5 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,15 @@
All notable changes to this project will be documented in this file.
<br/><br/>

#### Release: PyCaret 2.3.10 | Release Date: April 10th, 2022 (BUG FIXES)
- Fixed `predict_model` throwing an exception with loaded pipelines (https://github.com/pycaret/pycaret/pull/2349)
- Fixed potential parameter leaking for `ParallelBackend` - thanks to @goodwanghan (https://github.com/pycaret/pycaret/pull/2339)
- Refactored a piece of logic in arules - thanks to @daikikatsuragawa (https://github.com/pycaret/pycaret/pull/2316)
- Added Two Tutorials in Chinese - thanks to @ryanxjhan (https://github.com/pycaret/pycaret/pull/2352)
- Added CLF101 in Chinese - thanks to @ryanxjhan (https://github.com/pycaret/pycaret/pull/2353)
- Added new tutorials in Chinese - thanks to @ryanxjhan (https://github.com/pycaret/pycaret/pull/2375)
<br/><br/><br/>

#### Release: PyCaret 2.3.9 | Release Date: March 27th, 2022 (BUG FIXES)
- Made `log_experiment` more configurable (https://github.com/pycaret/pycaret/pull/2334, https://github.com/pycaret/pycaret/pull/2335)
- Made `return_train_score=False` use the old output format (https://github.com/pycaret/pycaret/pull/2333)
Expand Down
2 changes: 1 addition & 1 deletion README.md
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.9 out now!** [Check out the release notes here](https://github.com/pycaret/pycaret/releases).
:rocket: **Version 2.3.10 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
Expand Up @@ -5,8 +5,8 @@
import pandas as pd
import functools

version_ = "2.3.9"
nightly_version_ = "2.3.9"
version_ = "2.3.10"
nightly_version_ = "2.3.10"

__version__ = version_

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -21,7 +21,7 @@ def readme():

setup(
name="pycaret",
version="2.3.9",
version="2.3.10",
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
Expand Up @@ -4,7 +4,7 @@
from setuptools import setup, find_packages
import time

nightly_version = "2.3.9"
nightly_version = "2.3.10"

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 641ed85

Please sign in to comment.