Skip to content

Commit fb69a42

Browse files
committed
Release v0.20.0.
1 parent 155ba3a commit fb69a42

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "nalgebra"
3-
version = "0.19.0"
3+
version = "0.20.0"
44
authors = [ "Sébastien Crozet <[email protected]>" ]
55

66
description = "Linear algebra library with transformations and statically-sized or dynamically-sized matrices."

examples/cargo/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.0.0"
44
authors = [ "You" ]
55

66
[dependencies]
7-
nalgebra = "0.11.0"
7+
nalgebra = "0.20.0"
88

99
[[bin]]
1010
name = "example"

nalgebra-glm/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "nalgebra-glm"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
authors = ["sebcrozet <[email protected]>"]
55

66
description = "A computer-graphics oriented API for nalgebra, inspired by the C++ GLM library."
@@ -25,4 +25,4 @@ abomonation-serialize = [ "nalgebra/abomonation-serialize" ]
2525
num-traits = { version = "0.2", default-features = false }
2626
approx = { version = "0.3", default-features = false }
2727
alga = { version = "0.9", default-features = false }
28-
nalgebra = { path = "..", version = "0.19", default-features = false }
28+
nalgebra = { path = "..", version = "0.20", default-features = false }

nalgebra-lapack/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "nalgebra-lapack"
3-
version = "0.11.0"
3+
version = "0.12.0"
44
authors = [ "Sébastien Crozet <[email protected]>", "Andrew Straw <[email protected]>" ]
55

66
description = "Linear algebra library with transformations and satically-sized or dynamically-sized matrices."
@@ -23,7 +23,7 @@ accelerate = ["lapack-src/accelerate"]
2323
intel-mkl = ["lapack-src/intel-mkl"]
2424

2525
[dependencies]
26-
nalgebra = { version = "0.19", path = ".." }
26+
nalgebra = { version = "0.20", path = ".." }
2727
num-traits = "0.2"
2828
num-complex = { version = "0.2", default-features = false }
2929
alga = { version = "0.9", default-features = false }
@@ -34,7 +34,7 @@ lapack-src = { version = "0.5", default-features = false }
3434
# clippy = "*"
3535

3636
[dev-dependencies]
37-
nalgebra = { version = "0.19", path = "..", features = [ "arbitrary" ] }
37+
nalgebra = { version = "0.20", path = "..", features = [ "arbitrary" ] }
3838
quickcheck = "0.9"
3939
approx = "0.3"
4040
rand = "0.7"

0 commit comments

Comments
 (0)