diff --git a/CHANGELOG.md b/CHANGELOG.md index c3a202fc..ea2c7aa1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,15 @@ documented here. This project adheres to [Semantic Versioning](http://semver.org/). +## [0.7.0] +### Added + * Added implementation of assignement operators (+=, -=, etc.) for + everything. +### Modified + * Points and vectors are now linked to each other with associated types + (on the PntAsVec trait). + + ## [0.6.0] **Announcement:** a users forum has been created for `nalgebra`, `ncollide`, and `nphysics`. See you [there](http://users.nphysics.org)! diff --git a/Cargo.toml b/Cargo.toml index ba0aa975..8ae3a41e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nalgebra" -version = "0.6.1" +version = "0.7.0" authors = [ "Sébastien Crozet " ] # FIXME: add the contributors. description = "Linear algebra library for computer physics, computer graphics and general low-dimensional linear algebra for Rust."