Skip to content

Commit

Permalink
release 2.2.2 updates
Browse files Browse the repository at this point in the history
  • Loading branch information
PyCaret committed Nov 25, 2020
1 parent 4f3675d commit f2532cf
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 4 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
# Changelog
All notable changes to this project will be documented in this file.

#### Release: PyCaret 2.2.2 | Release Date: November 25, 2020 (SEVERAL BUGS FIX)
- Fixed an issue with the `optimize_threshold` function the `pycaret.classification` module. It now returns a float instead of an array.
- Fixed issue with the `predict_model` function. It now uses original data frame to append the predictions. As such any extra columns given at the time of inference are not removed when returning the predictions. Instead they are internally ignored at the time of predictions.
- Fixed edge case exceptions for the `create_model` function in `pycaret.clustering`.
- Fixed exceptions when column names are not string.
- Fixed exceptions in `pycaret.regression` when `transform_target` is True in the `setup` function.
- Fixed an exception in the `models` function if the `type` parameter is specified.
<br/><br/><br/>

#### Release: PyCaret 2.2.1 | Release Date: November 09, 2020 (SEVERAL BUGS FIX)
Post-release `2.2`, the following issues have been fixed:
- Fixed `plot_model = 'tree'` exceptions.
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ pip install pycaret[full]
```

### Minor Release
- [November 25, 2020] `2.2.2` released fixing several bugs. [Click here](https://github.com/pycaret/pycaret/releases) to see release notes.
- [November 9, 2020] `2.2.1` released fixing several bugs. [Click here](https://github.com/pycaret/pycaret/releases) to see release notes.

## PyCaret on GPU
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 numpy as np
import pandas as pd

version_ = "2.2.1"
nightly_version_ = "2.2.1"
version_ = "2.2.2"
nightly_version_ = "2.2.2"

__version__ = version_

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def readme():

setup(
name="pycaret",
version="2.2.1",
version="2.2.2",
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.2.1"
nightly_version = "2.2.2"

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 f2532cf

Please sign in to comment.