From 40c6675c306da07a5ab4e5b48f490ebb3d6c027d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Crozet?= Date: Sun, 17 Apr 2016 17:58:17 +0200 Subject: [PATCH] Update the Changelog. --- CHANGELOG.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0795fca5..e8a8f213 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,20 @@ documented here. This project adheres to [Semantic Versioning](http://semver.org/). +## [0.8.0] +## Modified + * Almost everything (types, methods, and traits) now use full names instead + of abbreviations (e.g. `Vec3` becomes `Vector3`). Most changes are abvious. + Note however that: + - `::sqnorm` becomes `::norm_squared`. + - `::sqdist` becomes `::distance_squared`. + - `::abs`, `::min`, etc. did not change as this is a common name for + absolute values on, e.g., the libc. + - Dynamically sized structures keep the `D` prefix, e.g., `DMat` becomes + `DMatrix`. + * All files with abbreviated names have been renamed to their full version, + e.g., `vec.rs` becomes `vector.rs`. + ## [0.7.0] ### Added * Added implementation of assignement operators (+=, -=, etc.) for