From 286a37364ef42c8ec94c98fb726742369fa56db8 Mon Sep 17 00:00:00 2001 From: sebcrozet Date: Mon, 28 Oct 2019 13:40:37 +0100 Subject: [PATCH] Release nalgebra 0.19.0. --- Cargo.toml | 4 ++-- nalgebra-glm/Cargo.toml | 4 ++-- nalgebra-lapack/Cargo.toml | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 2296d66b..582e0824 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nalgebra" -version = "0.18.2" +version = "0.19.0" authors = [ "Sébastien Crozet " ] 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 } diff --git a/nalgebra-glm/Cargo.toml b/nalgebra-glm/Cargo.toml index bb54e205..fbc8e4ca 100644 --- a/nalgebra-glm/Cargo.toml +++ b/nalgebra-glm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nalgebra-glm" -version = "0.4.2" +version = "0.5.0" authors = ["sebcrozet "] 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 } diff --git a/nalgebra-lapack/Cargo.toml b/nalgebra-lapack/Cargo.toml index 51830749..04abbbbd 100644 --- a/nalgebra-lapack/Cargo.toml +++ b/nalgebra-lapack/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nalgebra-lapack" -version = "0.10.0" +version = "0.11.0" authors = [ "Sébastien Crozet ", "Andrew Straw " ] 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"