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):