From 4bec1883dc04049ca8f38b552508aaa62a8ec085 Mon Sep 17 00:00:00 2001 From: Thomas Bury Date: Tue, 30 Apr 2024 12:22:58 +0200 Subject: [PATCH] chore: :bookmark: bump version number --- CHANGELOG.md | 4 ++++ CITATION.cff | 2 +- docs/conf.py | 2 +- src/arfs/__init__.py | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6341043..374053b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changes +# 2.2.6 + - [BUG] fix the calculation of the SHAP feature importance for multi-class + - [ENHANCEMENT] Update pandas aggregation to get rid of the future deprecation warnings + # 2.2.5 - [BUG] fix the calculation of the SHAP feature importance for multi-class - [ENHANCEMENT] return the feature for the importance diff --git a/CITATION.cff b/CITATION.cff index 054d983..387169d 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -15,5 +15,5 @@ keywords: - "Machine Learning" license: MIT License url: 'https://github.com/ThomasBury/arfs' -version: 2.2.5 +version: 2.2.6 date-released: 2021-12-18 diff --git a/docs/conf.py b/docs/conf.py index 00af604..b9c9970 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -25,7 +25,7 @@ author = "Thomas Bury" # The full version, including alpha/beta/rc tags -release = "2.2.5" +release = "2.2.6" # If extensions (or modules to document with autodoc) are in another # directory, add these directories to sys.path here. If the directory is diff --git a/src/arfs/__init__.py b/src/arfs/__init__.py index c351b5d..f07a76e 100644 --- a/src/arfs/__init__.py +++ b/src/arfs/__init__.py @@ -1,4 +1,4 @@ """init module, providing information about the arfs package """ -__version__ = "2.2.5" +__version__ = "2.2.6"