diff --git a/Cargo.toml b/Cargo.toml index 4672dae2..dc9e01e0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nalgebra" -version = "0.16.13" +version = "0.17.0" authors = [ "Sébastien Crozet " ] description = "Linear algebra library with transformations and statically-sized or dynamically-sized matrices." diff --git a/nalgebra-glm/Cargo.toml b/nalgebra-glm/Cargo.toml index 508c1c7d..1da1333d 100644 --- a/nalgebra-glm/Cargo.toml +++ b/nalgebra-glm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nalgebra-glm" -version = "0.2.1" +version = "0.3.0" authors = ["sebcrozet "] description = "A computer-graphics oriented API for nalgebra, inspired by the C++ GLM library." @@ -24,4 +24,4 @@ abomonation-serialize = [ "nalgebra/abomonation-serialize" ] num-traits = { version = "0.2", default-features = false } approx = { version = "0.3", default-features = false } alga = { version = "0.8", default-features = false } -nalgebra = { path = "..", version = "^0.16.13", default-features = false } +nalgebra = { path = "..", version = "0.17", default-features = false } diff --git a/nalgebra-glm/src/lib.rs b/nalgebra-glm/src/lib.rs index bd74598c..53830f2b 100644 --- a/nalgebra-glm/src/lib.rs +++ b/nalgebra-glm/src/lib.rs @@ -13,7 +13,7 @@ ```toml [dependencies] - nalgebra-glm = "0.1" + nalgebra-glm = "0.3" ``` Then, you should add an `extern crate` statement to your `lib.rs` or `main.rs` file. It is **strongly diff --git a/nalgebra-lapack/Cargo.toml b/nalgebra-lapack/Cargo.toml index 939217ff..ac54589c 100644 --- a/nalgebra-lapack/Cargo.toml +++ b/nalgebra-lapack/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nalgebra-lapack" -version = "0.8.0" +version = "0.9.0" authors = [ "Sébastien Crozet ", "Andrew Straw " ] description = "Linear algebra library with transformations and satically-sized or dynamically-sized matrices." @@ -22,7 +22,7 @@ accelerate = ["lapack-src/accelerate"] intel-mkl = ["lapack-src/intel-mkl"] [dependencies] -nalgebra = { version = "0.16", path = ".." } +nalgebra = { version = "0.17", path = ".." } num-traits = "0.2" num-complex = { version = "0.2", default-features = false } alga = { version = "0.8", default-features = false } @@ -33,7 +33,7 @@ lapack-src = { version = "0.2", default-features = false } # clippy = "*" [dev-dependencies] -nalgebra = { version = "0.16", path = "..", features = [ "arbitrary" ] } +nalgebra = { version = "0.17", path = "..", features = [ "arbitrary" ] } quickcheck = "0.8" approx = "0.3" rand = "0.6" diff --git a/src/lib.rs b/src/lib.rs index f92cd36a..80149c7c 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.16" +nalgebra = "0.17" ``` @@ -81,7 +81,7 @@ an optimized set of tools for computer graphics and physics. Those features incl #![deny(non_upper_case_globals)] #![deny(unused_qualifications)] #![deny(unused_results)] -#![warn(missing_docs)] // FIXME: deny this +#![deny(missing_docs)] #![warn(incoherent_fundamental_impls)] #![doc( html_favicon_url = "http://nalgebra.org/img/favicon.ico",