From 24ff3ecf08bcdfc4feca488fb5979638d411fb0f Mon Sep 17 00:00:00 2001 From: Chris Mutel Date: Tue, 4 Jun 2024 17:27:28 +0200 Subject: [PATCH] 0.4.2 --- CHANGELOG.md | 6 ++++++ matrix_utils/__init__.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a88ee15..dfe06df 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +### [0.4.2] - 2024-06-04 + +* Fix diagonal `MappedMatrixDict` - `col_mapper` is not required +* Unroll tuples when multiplying `SparseMatrixDict` +* Switch from `fs` to `fsspec` (following `bw_processing`) + ### [0.4.1] - 2023-12-18 * Allow passing `MappedMatrix` subclass to `MappedMatrixDict` diff --git a/matrix_utils/__init__.py b/matrix_utils/__init__.py index 9db0b37..a04ea3d 100644 --- a/matrix_utils/__init__.py +++ b/matrix_utils/__init__.py @@ -11,7 +11,7 @@ "SparseMatrixDict", ) -__version__ = "0.4.1" +__version__ = "0.4.2" from .array_mapper import ArrayMapper from .indexers import CombinatorialIndexer, Proxy, RandomIndexer, SequentialIndexer