diff --git a/CHANGELOG.md b/CHANGELOG.md index d11c4f9..0dee518 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ +## v0.4.2 (2023-11-05) + +### Fix + +* **sklearn:** Fix `_recursively_set_random_state()` imcompatible with `EstimatorWrapperBase` ([#107](https://github.com/34j/boost-loss/issues/107)) ([`ed13289`](https://github.com/34j/boost-loss/commit/ed13289e71dbc74ce5cc814eddfafd397db0e271)) + ## v0.4.1 (2023-11-05) ### Fix diff --git a/pyproject.toml b/pyproject.toml index 1839d64..65783d6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "boost-loss" -version = "0.4.1" +version = "0.4.2" description = "Utilities for easy use of custom losses in CatBoost, LightGBM, XGBoost" authors = ["34j <34j.95a2p@simplelogin.com>"] license = "MIT" diff --git a/src/boost_loss/__init__.py b/src/boost_loss/__init__.py index b2e2472..311731d 100644 --- a/src/boost_loss/__init__.py +++ b/src/boost_loss/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.4.1" +__version__ = "0.4.2" from .base import LossBase from .debug import DebugLoss, PrintLoss from .resuming import ResumingLoss