From e18b3522541236190c1de3e20f0349b04af76188 Mon Sep 17 00:00:00 2001 From: ChuanXu1 Date: Sat, 5 Aug 2023 18:33:24 +0100 Subject: [PATCH] Version 1.6.0 (separate CellHint) --- CHANGELOG.md | 5 +++++ celltypist/__init__.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2bf55a3..44ff16b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog ********************************* +## CellTypist 1.6.0 (August 5, 2023) +- Separate [CellHint](https://github.com/Teichlab/cellhint) from CellTypist +- Keep strict one-to-one orthologs during species model conversion +- Auto-fetch feature transfer files for model conversion +- Adapt code to sklearn>=1.3.0 [#75](https://github.com/Teichlab/celltypist/issues/75) ## CellTypist 1.5.3 (July 10, 2023) - Fix DistanceMetric import for sklearn >= 1.3.0 [#73](https://github.com/Teichlab/celltypist/issues/73) - Detect input format for [celltypist.dotplot](https://celltypist.readthedocs.io/en/latest/celltypist.dotplot.html) diff --git a/celltypist/__init__.py b/celltypist/__init__.py index 89e81a8..e1ad0bb 100644 --- a/celltypist/__init__.py +++ b/celltypist/__init__.py @@ -3,4 +3,4 @@ from .train import train from .plot import dotplot -__version__ = "1.5.3" +__version__ = "1.6.0"