Release v0.10.0.
This commit is contained in:
parent
8f5b60421c
commit
7914d7bdcb
12
CHANGELOG.md
12
CHANGELOG.md
|
@ -4,6 +4,18 @@ documented here.
|
||||||
|
|
||||||
This project adheres to [Semantic Versioning](http://semver.org/).
|
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]
|
## [0.9.0]
|
||||||
### Modified
|
### Modified
|
||||||
* Renamed:
|
* Renamed:
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "nalgebra"
|
name = "nalgebra"
|
||||||
version = "0.9.0"
|
version = "0.10.0"
|
||||||
authors = [ "Sébastien Crozet <developer@crozet.re>" ] # FIXME: add the contributors.
|
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."
|
description = "Linear algebra library for computer physics, computer graphics and general low-dimensional linear algebra for Rust."
|
||||||
|
|
Loading…
Reference in New Issue