From b36b32d91e8f09415712f0c59771fe2f69d2295a Mon Sep 17 00:00:00 2001 From: Adam Gayoso Date: Sun, 8 Oct 2023 22:39:06 +0200 Subject: [PATCH] 0.4.1 release (#116) * bump version * Update .bumpversion.cfg * Update CHANGELOG.md * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> --- .bumpversion.cfg | 2 +- CHANGELOG.md | 6 ++++++ pyproject.toml | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 6e46e66..2579f1c 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.4.0 +current_version = 0.4.1 tag = True commit = True diff --git a/CHANGELOG.md b/CHANGELOG.md index ed6706c..4a793b5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,12 @@ and this project adheres to [Semantic Versioning][]. [keep a changelog]: https://keepachangelog.com/en/1.0.0/ [semantic versioning]: https://semver.org/spec/v2.0.0.html +## 0.4.1 (2023-10-08) + +- Fix KMeans. All previous versions had a bug with KMeans and ARI/NMI metrics are not reliable with this clustering. ([#115][]) + +[#115]: https://github.com/YosefLab/scib-metrics/pull/115 + ## 0.4.0 (2023-09-19) - Drop Python 3.8 ([#107][]) diff --git a/pyproject.toml b/pyproject.toml index 68a8713..ed48fdf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ requires = ["hatchling"] [project] name = "scib-metrics" -version = "0.4.0" +version = "0.4.1" description = "Accelerated and Python-only scIB metrics" readme = "README.md" requires-python = ">=3.9"