From 353d36639d11ce11f301e039feb50d65ed2efcc7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Crozet?= Date: Sun, 17 Apr 2016 13:41:01 +0200 Subject: [PATCH] Release v0.7.0. This replaces the relase v0.6.1 which introduced breaking changes. --- CHANGELOG.md | 9 +++++++++ Cargo.toml | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) 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."