From f2b7c17dac17fc4c5d191934cff3ae38ab5572b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Crozet?= Date: Tue, 15 Aug 2017 19:49:39 +0200 Subject: [PATCH] Release v0.13.0. nalgebra-lapack v0.5. --- CHANGELOG.md | 3 +++ Cargo.toml | 2 +- nalgebra-lapack/Cargo.toml | 6 +++--- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9cdabd87..7d7b4326 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,9 @@ This project adheres to [Semantic Versioning](http://semver.org/). The **nalgebra-lapack** crate has been updated. This now includes a broad range matrix decompositions using LAPACK bindings. +This adds support for serialization using the +[abomonation](https://crates.io/crates/abomonation) crate. + ### Breaking semantic change * The implementation of slicing with steps now matches the documentation. Before, step identified the number to add to pass from one column/row index diff --git a/Cargo.toml b/Cargo.toml index 7551baae..9152a0a1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nalgebra" -version = "0.12.3" +version = "0.13.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 8b252f09..40469e7b 100644 --- a/nalgebra-lapack/Cargo.toml +++ b/nalgebra-lapack/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nalgebra-lapack" -version = "0.11.2" +version = "0.5.0" authors = [ "Sébastien Crozet ", "Andrew Straw " ] description = "Linear algebra library with transformations and satically-sized or dynamically-sized matrices." @@ -21,7 +21,7 @@ netlib = ["lapack/netlib"] accelerate = ["lapack/accelerate"] [dependencies] -nalgebra = { version = "0.12", path = ".." } +nalgebra = { version = "0.13", path = ".." } num-traits = "0.1" num-complex = "0.1" alga = "0.5" @@ -34,7 +34,7 @@ version = "0.11" default-features = false [dev-dependencies] -nalgebra = { version = "0.12", path = "..", features = [ "arbitrary" ] } +nalgebra = { version = "0.13", path = "..", features = [ "arbitrary" ] } quickcheck = "0.4" approx = "0.1" rand = "0.3"