From 24eb7880f34964edfb2302a3b4a9bdcf7cecd119 Mon Sep 17 00:00:00 2001 From: sebcrozet Date: Fri, 20 Jul 2018 16:35:57 +0200 Subject: [PATCH] Release v0.16.0. --- CHANGELOG.md | 9 ++++++--- Cargo.toml | 2 +- nalgebra-lapack/Cargo.toml | 4 ++-- src/lib.rs | 2 +- 4 files changed, 10 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c84dc8af..f3c09964 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,11 +4,14 @@ documented here. This project adheres to [Semantic Versioning](http://semver.org/). -## [0.16.0] - WIP +## [0.16.0] +All dependencies have been updated to their latest versions. + ## Modified - * Adjust `UnitQuaternion`s, `Rotation3`s, and `Rotation2`s generated from the `Standard` distribution to be uniformly - distributed. + * Adjust `UnitQuaternion`s, `Rotation3`s, and `Rotation2`s generated from the `Standard` distribution to be uniformly distributed. ### Added + * Add a feature `stdweb` to activate the dependency feature `rand/stdweb`. + * Add blas-like methods `.imin()` and `.imax()` that return the index of the minimum and maximum entry of a vector. * Add construction of a `Point` from an array by implementing the `From` trait. * Add support for generating uniformly distributed random unit column vectors using the `Standard` distribution. diff --git a/Cargo.toml b/Cargo.toml index f6569ae5..2f522441 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nalgebra" -version = "0.15.3" +version = "0.16.0" authors = [ "Sébastien Crozet " ] description = "Linear algebra library with transformations and statically-sized or dynamically-sized matrices." diff --git a/nalgebra-lapack/Cargo.toml b/nalgebra-lapack/Cargo.toml index b5ca44d5..7b6ab03f 100644 --- a/nalgebra-lapack/Cargo.toml +++ b/nalgebra-lapack/Cargo.toml @@ -22,7 +22,7 @@ accelerate = ["lapack-src/accelerate"] intel-mkl = ["lapack-src/intel-mkl"] [dependencies] -nalgebra = { version = "0.15", path = ".." } +nalgebra = { version = "0.16", path = ".." } num-traits = "0.2" num-complex = { version = "0.2", default-features = false } alga = { version = "0.7", default-features = false } @@ -33,7 +33,7 @@ lapack-src = { version = "0.2", default-features = false } # clippy = "*" [dev-dependencies] -nalgebra = { version = "0.15", path = "..", features = [ "arbitrary" ] } +nalgebra = { version = "0.16", path = "..", features = [ "arbitrary" ] } quickcheck = "0.6" approx = "0.3" rand = "0.5" diff --git a/src/lib.rs b/src/lib.rs index 8603e1ba..8268f682 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -15,7 +15,7 @@ Simply add the following to your `Cargo.toml` file: ```.ignore [dependencies] -nalgebra = "0.15" +nalgebra = "0.16" ```