From 98b1ba7eda28c0f07ab5707814bc98180dcad817 Mon Sep 17 00:00:00 2001 From: Brendan Zabarauskas Date: Sat, 12 Dec 2015 13:27:47 +1100 Subject: [PATCH 1/2] Add a CHANGELOG --- CHANGELOG.md | 93 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 93 insertions(+) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..093be7e --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,93 @@ +# Change Log + +All notable changes to this project will be documented in this file, following +the format defined at [keepachangelog.com](http://keepachangelog.com/). +This project adheres to [Semantic Versioning](http://semver.org/). + +## [Unreleased] + +### Added +- This CHANGELOG for keeping track of notable changes. +- `Matrix4::{from_scale, from_nonuniform_scale}` for easily constructing + homogeneous scale matrices. + +### Changed +- Renamed `SquareMatrix::one` to `SquareMatrix::identity`. `identity` is easier + to search for, + and the more common name for the multiplicative identity for matrices. +- Matrix impls have now been constrained to `S: BaseFloat`. + +## [v0.5.0] - 2015-11-20 + +### Changed +- Take many point and vector parameters by value. +- Take point and vector operator overloads by value. +- Divide `Matrix` trait into `Matrix` and `SquareMatrix`, opening the door for + non-square matrices in the future. +- Make many trait type parameters associated types. +- Move element-wise methods from `Vector` and `Point` onto the `Array1` trait, + and rename it to `Array`. +- Make pointer access methods on `Array` match the naming scheme of those in the + standard library. + +### Removed +- Removed collision types: `Ray`, `Plane`, `Frustum`, `Aabb2`, `Aabb3` `Obb2`, + `Obb3` `Sphere`, `Cylinder`. These can now be found at + [csherratt/collision-rs](https://github.com/csherratt/collision-rs). +- Remove `Array2` trait, moving methods onto the `Matrix` trait. + +## [v0.4.0] - 2015-10-25 + +## [v0.3.1] - 2015-09-20 + +## [v0.3.0] - 2015-09-20 + +## [v0.2.0] - 2015-05-11 + +## [v0.1.6] - 2015-05-10 + +## [v0.1.5] - 2015-04-25 + +## [v0.1.4] - 2015-04-24 + +## [v0.1.3] - 2015-04-06 + +## [v0.1.2] - 2015-04-01 + +## [v0.1.1] - 2015-03-25 + +## [v0.1.0] - 2015-03-15 + +## [v0.0.8] - 2015-03-09 + +## [v0.0.7] - 2015-03-01 + +## [v0.0.6] - 2015-02-21 + +## [v0.0.5] - 2015-02-16 + +## [v0.0.4] - 2015-02-11 + +## [v0.0.3] - 2015-02-08 + +## v0.0.1 - 2014-06-24 + +[Unreleased]: https://github.com/bjz/cgmath-rs/compare/v0.5.0...HEAD +[v0.5.0]: https://github.com/bjz/cgmath-rs/compare/v0.4.0...v0.5.0 +[v0.4.0]: https://github.com/bjz/cgmath-rs/compare/v0.3.1...v0.4.0 +[v0.3.1]: https://github.com/bjz/cgmath-rs/compare/v0.3.0...v0.3.1 +[v0.3.0]: https://github.com/bjz/cgmath-rs/compare/v0.2.0...v0.3.0 +[v0.2.0]: https://github.com/bjz/cgmath-rs/compare/v0.1.6...v0.2.0 +[v0.1.6]: https://github.com/bjz/cgmath-rs/compare/v0.1.5...v0.1.6 +[v0.1.5]: https://github.com/bjz/cgmath-rs/compare/v0.1.4...v0.1.5 +[v0.1.4]: https://github.com/bjz/cgmath-rs/compare/v0.1.3...v0.1.4 +[v0.1.3]: https://github.com/bjz/cgmath-rs/compare/v0.1.2...v0.1.3 +[v0.1.2]: https://github.com/bjz/cgmath-rs/compare/v0.1.1...v0.1.2 +[v0.1.1]: https://github.com/bjz/cgmath-rs/compare/v0.1.0...v0.1.1 +[v0.1.0]: https://github.com/bjz/cgmath-rs/compare/v0.0.8...v0.1.0 +[v0.0.8]: https://github.com/bjz/cgmath-rs/compare/v0.0.7...v0.0.8 +[v0.0.7]: https://github.com/bjz/cgmath-rs/compare/v0.0.6...v0.0.7 +[v0.0.6]: https://github.com/bjz/cgmath-rs/compare/v0.0.5...v0.0.6 +[v0.0.5]: https://github.com/bjz/cgmath-rs/compare/v0.0.4...v0.0.5 +[v0.0.4]: https://github.com/bjz/cgmath-rs/compare/v0.0.3...v0.0.4 +[v0.0.3]: https://github.com/bjz/cgmath-rs/compare/v0.0.1...v0.0.3 From ddf4694281a99cc92cd80cc4f3124793421bf171 Mon Sep 17 00:00:00 2001 From: Brendan Zabarauskas Date: Sat, 12 Dec 2015 13:30:25 +1100 Subject: [PATCH 2/2] Bump version to 0.6.0 --- CHANGELOG.md | 5 ++++- Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 093be7e..0a8bac5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [v0.6.0] - 2015-12-12 + ### Added - This CHANGELOG for keeping track of notable changes. - `Matrix4::{from_scale, from_nonuniform_scale}` for easily constructing @@ -72,7 +74,8 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## v0.0.1 - 2014-06-24 -[Unreleased]: https://github.com/bjz/cgmath-rs/compare/v0.5.0...HEAD +[Unreleased]: https://github.com/bjz/cgmath-rs/compare/v0.6.0...HEAD +[v0.6.0]: https://github.com/bjz/cgmath-rs/compare/v0.5.0...v0.6.0 [v0.5.0]: https://github.com/bjz/cgmath-rs/compare/v0.4.0...v0.5.0 [v0.4.0]: https://github.com/bjz/cgmath-rs/compare/v0.3.1...v0.4.0 [v0.3.1]: https://github.com/bjz/cgmath-rs/compare/v0.3.0...v0.3.1 diff --git a/Cargo.toml b/Cargo.toml index 85c7538..46e91aa 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "cgmath" -version = "0.5.0" +version = "0.6.0" authors = ["Brendan Zabarauskas ", "Brian Heylin", "Colin Sherratt",