diff --git a/CHANGELOG.md b/CHANGELOG.md index f19ebdc..907004b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ +## v0.5.4 (2023-12-31) + +### Fix + +* **deps:** Update dependency attrs to v23.2.0 ([#130](https://github.com/34j/boost-loss/issues/130)) ([`7620a33`](https://github.com/34j/boost-loss/commit/7620a335fb761bd22c983cddefa1e4266d126980)) + ## v0.5.3 (2023-12-22) ### Fix diff --git a/pyproject.toml b/pyproject.toml index 02d00e1..2252e2c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "boost-loss" -version = "0.5.3" +version = "0.5.4" 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 6e412f6..245b979 100644 --- a/src/boost_loss/__init__.py +++ b/src/boost_loss/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.5.3" +__version__ = "0.5.4" from .base import LossBase from .debug import DebugLoss, PrintLoss from .resuming import ResumingLoss