Skip to content

Commit

Permalink
Release v0.20.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
sebcrozet committed Mar 2, 2020
1 parent 155ba3a commit fb69a42
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "nalgebra"
version = "0.19.0"
version = "0.20.0"
authors = [ "Sébastien Crozet <developer@crozet.re>" ]

description = "Linear algebra library with transformations and statically-sized or dynamically-sized matrices."
Expand Down
2 changes: 1 addition & 1 deletion examples/cargo/Cargo.toml
Expand Up @@ -4,7 +4,7 @@ version = "0.0.0"
authors = [ "You" ]

[dependencies]
nalgebra = "0.11.0"
nalgebra = "0.20.0"

[[bin]]
name = "example"
Expand Down
4 changes: 2 additions & 2 deletions nalgebra-glm/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "nalgebra-glm"
version = "0.5.0"
version = "0.6.0"
authors = ["sebcrozet <developer@crozet.re>"]

description = "A computer-graphics oriented API for nalgebra, inspired by the C++ GLM library."
Expand All @@ -25,4 +25,4 @@ abomonation-serialize = [ "nalgebra/abomonation-serialize" ]
num-traits = { version = "0.2", default-features = false }
approx = { version = "0.3", default-features = false }
alga = { version = "0.9", default-features = false }
nalgebra = { path = "..", version = "0.19", default-features = false }
nalgebra = { path = "..", version = "0.20", default-features = false }
6 changes: 3 additions & 3 deletions nalgebra-lapack/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "nalgebra-lapack"
version = "0.11.0"
version = "0.12.0"
authors = [ "Sébastien Crozet <developer@crozet.re>", "Andrew Straw <strawman@astraw.com>" ]

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

[dependencies]
nalgebra = { version = "0.19", path = ".." }
nalgebra = { version = "0.20", path = ".." }
num-traits = "0.2"
num-complex = { version = "0.2", default-features = false }
alga = { version = "0.9", default-features = false }
Expand All @@ -34,7 +34,7 @@ lapack-src = { version = "0.5", default-features = false }
# clippy = "*"

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

0 comments on commit fb69a42

Please sign in to comment.