Merge pull request #333 from bjz/version-bump

Update to v0.9.0
This commit is contained in:
Brendan Zabarauskas 2016-04-19 22:29:12 +10:00
commit 6e9d13c94d
2 changed files with 20 additions and 5 deletions

View file

@ -6,7 +6,21 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## [Unreleased] ## [Unreleased]
## [v0.7.0] - 2016-04-06 ## [v0.9.0] - 2016-04-19
### Changed
- Assignment operators implementations have been stabilised, to coincide with
their [stabilisation in Rust 1.8](http://blog.rust-lang.org/2016/04/14/Rust-1.8.html).
- Renames `Vector` trait to `VectorSpace`.
- Renames `EuclideanVector` to `InnerSpace`.
- Renames `Point` to `EuclideanSpace`, and `Point::Vector` to `EuclideanSpace::Diff`.
- `Quaternion`s now implement `VectorSpace` and `InnerSpace` for the functions
they share.
- The `Matrix` trait is now constraint by `VectorSpace`, with `Matrix::Element`
removed in favor of `VectorSpace::Scalar`.
## [v0.8.0] - 2016-04-06
### Added ### Added
@ -151,8 +165,9 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## v0.0.1 - 2014-06-24 ## v0.0.1 - 2014-06-24
[Unreleased]: https://github.com/bjz/cgmath/compare/v0.8.0...HEAD [Unreleased]: https://github.com/bjz/cgmath/compare/v0.9.0...HEAD
[v0.7.0]: https://github.com/bjz/cgmath/compare/v0.7.0...v0.8.0 [v0.9.0]: https://github.com/bjz/cgmath/compare/v0.8.0...v0.9.0
[v0.8.0]: https://github.com/bjz/cgmath/compare/v0.7.0...v0.8.0
[v0.7.0]: https://github.com/bjz/cgmath/compare/v0.6.0...v0.7.0 [v0.7.0]: https://github.com/bjz/cgmath/compare/v0.6.0...v0.7.0
[v0.6.0]: https://github.com/bjz/cgmath/compare/v0.5.0...v0.6.0 [v0.6.0]: https://github.com/bjz/cgmath/compare/v0.5.0...v0.6.0
[v0.5.0]: https://github.com/bjz/cgmath/compare/v0.4.0...v0.5.0 [v0.5.0]: https://github.com/bjz/cgmath/compare/v0.4.0...v0.5.0

View file

@ -1,7 +1,7 @@
[package] [package]
name = "cgmath" name = "cgmath"
version = "0.8.0" version = "0.9.0"
authors = ["Brendan Zabarauskas <bjzaba@yahoo.com.au>", authors = ["Brendan Zabarauskas <bjzaba@yahoo.com.au>",
"Brian Heylin", "Brian Heylin",
"Colin Sherratt", "Colin Sherratt",
@ -35,4 +35,4 @@ rand = "0.3"
rustc-serialize = "0.3" rustc-serialize = "0.3"
[dev-dependencies] [dev-dependencies]
glium = "0.13.5" glium = "0.14.0"