From 7412d0025add6ef28111de722db2500e38ba1d20 Mon Sep 17 00:00:00 2001 From: Matt Fishman Date: Thu, 15 May 2025 17:40:42 -0400 Subject: [PATCH 1/2] Fix interpolation in `isstored` error message --- src/indexing.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/indexing.jl b/src/indexing.jl index 8890dec..3cd089d 100644 --- a/src/indexing.jl +++ b/src/indexing.jl @@ -155,7 +155,7 @@ for f in (:isstored, :getunstoredindex, :getstoredindex) # errors $_f(::IndexStyle, A::AbstractArray, I...) = error( - "`$f` for $("$(typeof(A))") with types $("$(typeof(I))") is not supported" + "`$($f)` for $("$(typeof(A))") with types $("$(typeof(I))") is not supported" ) $error_if_canonical(::IndexLinear, A::AbstractArray, ::Int) = throw( From bc061f1ea3d2cefd38dec1fd388b4cf2a69d8fbd Mon Sep 17 00:00:00 2001 From: Matt Fishman Date: Thu, 15 May 2025 17:41:31 -0400 Subject: [PATCH 2/2] Bump version --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index dd1c89d..b8d02f7 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "SparseArraysBase" uuid = "0d5efcca-f356-4864-8770-e1ed8d78f208" authors = ["ITensor developers and contributors"] -version = "0.5.7" +version = "0.5.8" [deps] Accessors = "7d9f7c33-5ae7-4f3b-8dc6-eff91059b697"