Skip to content

Commit 30f440e

Browse files
authored
Bump v0.15.2 (#307)
* Bump v0.15.2 * fix small errors in tutorial
1 parent 31c912f commit 30f440e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "TensorKit"
22
uuid = "07d1fe3e-3e46-537d-9eac-e9e13d0d4cec"
33
authors = ["Jutho Haegeman"]
4-
version = "0.15.1"
4+
version = "0.15.2"
55

66
[deps]
77
LRUCache = "8ac3fa9e-de4c-5943-b1dc-09c6b5f20637"

docs/src/man/tutorial.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ constructor as well as a unicode alternative using the symbol `→` (obtained as
136136

137137
```@repl tutorial
138138
P = space(U)
139-
space(U) == HomSpace(ℝ^3 ⊗ ℝ^4, ℝ^2) == (ℝ^3 ⊗ ℝ^4 ← ℝ^2) == ℝ^2 → ℝ^3 ⊗ ℝ^4
139+
space(U) == HomSpace(ℝ^3 ⊗ ℝ^4, ℝ^2) == (ℝ^3 ⊗ ℝ^4 ← ℝ^2) == (ℝ^2 → ℝ^3 ⊗ ℝ^4)
140140
(codomain(P), domain(P))
141141
```
142142

@@ -281,7 +281,7 @@ It also makes clear the isomorphism between linear maps `ℂ^n → ℂ^m` and te
281281

282282
```@repl tutorial
283283
m = randn(ComplexF64, ℂ^3, ℂ^4)
284-
m2 = permute(m, (1,2), ())
284+
m2 = permute(m, ((1, 2), ()))
285285
codomain(m2)
286286
space(m, 1)
287287
space(m, 2)

0 commit comments

Comments
 (0)