From 8dbfbe10a5e5f74a77c27118292a108125051fc2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Crozet?= Date: Thu, 24 Mar 2016 19:03:52 +0100 Subject: [PATCH] Add a changelog (at last!) --- CHANGELOG | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 CHANGELOG diff --git a/CHANGELOG b/CHANGELOG new file mode 100644 index 00000000..ec5c8596 --- /dev/null +++ b/CHANGELOG @@ -0,0 +1,16 @@ +# Change Log +All notable changes to `nalgebra`, starting with the version 0.6.0 will be +documented in this file (sorry I didn't maintain one before). + +This project adheres to [Semantic Versioning](http://semver.org/). + +## [0.6.0] - 2016-03-24 +### Added + * Dependency to [generic-array](https://crates.io/crates/generic-array) + * Staticly sized vectors with user-defined sizes: `VecN`. + * Similarity transformations (an uniform scale followed by a rotation followed + by a translation): `Sim2`, `Sim3`. + +### Removed + * Zero-sized elements `Vec0`, `Pnt0`. + * Incomplete 4-dimensional transformations `Rot4` and `Iso4`.