Release v0.10.0.

This commit is contained in:
Sébastien Crozet 2016-08-29 21:16:50 +02:00
parent 8f5b60421c
commit 7914d7bdcb
2 changed files with 13 additions and 1 deletions

View File

@ -4,6 +4,18 @@ documented here.
This project adheres to [Semantic Versioning](http://semver.org/).
## [0.10.0]
### Added
Binary operations are now allowed between references as well. For example
`Vector3<f32> + &Vector3<f32>` is now possible.
### Modified
Removed unused parameters to methods from the `ApproxEq` trait. Those were
required before rust 1.0 to help type inference. The are not needed any more
since it now allowed to write for a type `T` that implements `ApproxEq`:
`<T as ApproxEq>::approx_epsilon()`. This replaces the old form:
`ApproxEq::approx_epsilon(None::<T>)`.
## [0.9.0]
### Modified
* Renamed:

View File

@ -1,6 +1,6 @@
[package]
name = "nalgebra"
version = "0.9.0"
version = "0.10.0"
authors = [ "Sébastien Crozet <developer@crozet.re>" ] # FIXME: add the contributors.
description = "Linear algebra library for computer physics, computer graphics and general low-dimensional linear algebra for Rust."