From a4afc9507129a35cd22408f37e3a432ba12a625c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Perceval=20Wajsb=C3=BCrt?= Date: Mon, 9 Sep 2024 11:37:04 +0200 Subject: [PATCH] chore: bump version to 0.3.5 --- changelog.md | 3 ++- foldedtensor/__init__.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/changelog.md b/changelog.md index 4c74ffa..c964610 100644 --- a/changelog.md +++ b/changelog.md @@ -1,8 +1,9 @@ # Changelog -## Unreleased +## v0.3.5 - Support hashing the `folded_tensor.length` field (via a UserList), which is convenient for caching +- Improve error messaging when refolding with missing dims ## v0.3.4 diff --git a/foldedtensor/__init__.py b/foldedtensor/__init__.py index 8169534..3f63287 100644 --- a/foldedtensor/__init__.py +++ b/foldedtensor/__init__.py @@ -45,7 +45,7 @@ except AttributeError: DisableTorchFunctionSubclass = torch._C.DisableTorchFunction -__version__ = "0.3.4" +__version__ = "0.3.5" class FoldedTensorLengths(UserList):