From bc26aa1d52ba5a276ddc4a9e5924229a62d56fb4 Mon Sep 17 00:00:00 2001 From: Brendan Zabarauskas Date: Wed, 26 Apr 2017 22:36:24 +1000 Subject: [PATCH 1/2] Simplify authors list Sorry - this was too hard to maintain :( --- Cargo.toml | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index fa6e8e8..c260d2f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,17 +2,7 @@ name = "cgmath" version = "0.13.1" -authors = ["Brendan Zabarauskas ", - "Brian Heylin", - "Colin Sherratt", - "Dzmitry Malyshau", - "Erick Tryzelaar", - "Luqman Aden", - "Maik Klein", - "Mikko Perttunen", - "Pierre Krieger", - "Tomasz Stachowiak" -] +authors = ["Brendan Zabarauskas "] license = "Apache-2.0" description = "A linear algebra and mathematics library for computer graphics." From 536b5c5c3619eec5a4189698a454893d18300252 Mon Sep 17 00:00:00 2001 From: Brendan Zabarauskas Date: Wed, 26 Apr 2017 22:37:09 +1000 Subject: [PATCH 2/2] Bump cargo version --- CHANGELOG.md | 10 +++++++++- Cargo.toml | 2 +- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 42f81cc..1d7fa49 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,13 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [v0.14.0] - 2017-04-26 + +## Changed + +- Constrained `VectorSpace`, `Rotation`, and `Angle` by `iter::Sum` +- Constrained `SquareMatrix` by `iter::Product` + ## [v0.13.1] - 2017-04-22 ### Changed @@ -244,7 +251,8 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## v0.0.1 - 2014-06-24 -[Unreleased]: https://github.com/brendanzab/cgmath/compare/v0.13.1...HEAD +[Unreleased]: https://github.com/brendanzab/cgmath/compare/v0.14.0...HEAD +[v0.13.1]: https://github.com/brendanzab/cgmath/compare/v0.13.1...v0.14.0 [v0.13.1]: https://github.com/brendanzab/cgmath/compare/v0.13.0...v0.13.1 [v0.12.0]: https://github.com/brendanzab/cgmath/compare/v0.12.0...v0.13.0 [v0.12.0]: https://github.com/brendanzab/cgmath/compare/v0.11.0...v0.12.0 diff --git a/Cargo.toml b/Cargo.toml index c260d2f..5bf9702 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "cgmath" -version = "0.13.1" +version = "0.14.0" authors = ["Brendan Zabarauskas "] license = "Apache-2.0" description = "A linear algebra and mathematics library for computer graphics."