Release v0.13.0.

nalgebra-lapack v0.5.
This commit is contained in:
Sébastien Crozet 2017-08-15 19:49:39 +02:00
parent 613abfc1b4
commit f2b7c17dac
3 changed files with 7 additions and 4 deletions

View File

@ -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 The **nalgebra-lapack** crate has been updated. This now includes a broad range
matrix decompositions using LAPACK bindings. matrix decompositions using LAPACK bindings.
This adds support for serialization using the
[abomonation](https://crates.io/crates/abomonation) crate.
### Breaking semantic change ### Breaking semantic change
* The implementation of slicing with steps now matches the documentation. * The implementation of slicing with steps now matches the documentation.
Before, step identified the number to add to pass from one column/row index Before, step identified the number to add to pass from one column/row index

View File

@ -1,6 +1,6 @@
[package] [package]
name = "nalgebra" name = "nalgebra"
version = "0.12.3" version = "0.13.0"
authors = [ "Sébastien Crozet <developer@crozet.re>" ] authors = [ "Sébastien Crozet <developer@crozet.re>" ]
description = "Linear algebra library with transformations and statically-sized or dynamically-sized matrices." description = "Linear algebra library with transformations and statically-sized or dynamically-sized matrices."

View File

@ -1,6 +1,6 @@
[package] [package]
name = "nalgebra-lapack" name = "nalgebra-lapack"
version = "0.11.2" version = "0.5.0"
authors = [ "Sébastien Crozet <developer@crozet.re>", "Andrew Straw <strawman@astraw.com>" ] 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." description = "Linear algebra library with transformations and satically-sized or dynamically-sized matrices."
@ -21,7 +21,7 @@ netlib = ["lapack/netlib"]
accelerate = ["lapack/accelerate"] accelerate = ["lapack/accelerate"]
[dependencies] [dependencies]
nalgebra = { version = "0.12", path = ".." } nalgebra = { version = "0.13", path = ".." }
num-traits = "0.1" num-traits = "0.1"
num-complex = "0.1" num-complex = "0.1"
alga = "0.5" alga = "0.5"
@ -34,7 +34,7 @@ version = "0.11"
default-features = false default-features = false
[dev-dependencies] [dev-dependencies]
nalgebra = { version = "0.12", path = "..", features = [ "arbitrary" ] } nalgebra = { version = "0.13", path = "..", features = [ "arbitrary" ] }
quickcheck = "0.4" quickcheck = "0.4"
approx = "0.1" approx = "0.1"
rand = "0.3" rand = "0.3"