Release nalgebra 0.19.0.

This commit is contained in:
sebcrozet 2019-10-28 13:40:37 +01:00 committed by Sébastien Crozet
parent 0cc1bac816
commit 549d0dd2dd
3 changed files with 7 additions and 7 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "nalgebra"
version = "0.18.2"
version = "0.19.0"
authors = [ "Sébastien Crozet <developer@crozet.re>" ]
description = "Linear algebra library with transformations and statically-sized or dynamically-sized matrices."
@ -32,7 +32,7 @@ alloc = [ ]
io = [ "pest", "pest_derive" ]
[dependencies]
typenum = "1.10"
typenum = "1.11"
generic-array = "0.13"
rand = { version = "0.7", default-features = false }
num-traits = { version = "0.2", default-features = false }

View File

@ -1,6 +1,6 @@
[package]
name = "nalgebra-glm"
version = "0.4.2"
version = "0.5.0"
authors = ["sebcrozet <developer@crozet.re>"]
description = "A computer-graphics oriented API for nalgebra, inspired by the C++ GLM library."
@ -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.18", default-features = false }
nalgebra = { path = "..", version = "0.19", default-features = false }

View File

@ -1,6 +1,6 @@
[package]
name = "nalgebra-lapack"
version = "0.10.0"
version = "0.11.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."
@ -23,7 +23,7 @@ accelerate = ["lapack-src/accelerate"]
intel-mkl = ["lapack-src/intel-mkl"]
[dependencies]
nalgebra = { version = "0.18", path = ".." }
nalgebra = { version = "0.19", path = ".." }
num-traits = "0.2"
num-complex = { version = "0.2", default-features = false }
alga = { version = "0.9", default-features = false }
@ -34,7 +34,7 @@ lapack-src = { version = "0.3", default-features = false }
# clippy = "*"
[dev-dependencies]
nalgebra = { version = "0.18", path = "..", features = [ "arbitrary" ] }
nalgebra = { version = "0.19", path = "..", features = [ "arbitrary" ] }
quickcheck = "0.9"
approx = "0.3"
rand = "0.7"