diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index 0d55dbf..954d7f7 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -9,6 +9,17 @@ Release notes * +v0.1.5 +------ + +This release comes with fixes: + +* for handling and saving colour palettes in MuData for categorical and continuous variables in :func:`muon.pl.embedding`, + +* for using sparse matrices in the MOFA interface to combine modalities with missing samples in :func:`muon.tl.mofa`, + +* for error messages and mixing metadata and features when plotting across modalities with :func:`muon.pl.embedding`. + v0.1.4 ------ diff --git a/muon/__init__.py b/muon/__init__.py index 1e50138..207d758 100644 --- a/muon/__init__.py +++ b/muon/__init__.py @@ -13,4 +13,4 @@ from . import atac from . import prot -__version__ = "0.1.4" +__version__ = "0.1.5"