commit
6e9d13c94d
2 changed files with 20 additions and 5 deletions
21
CHANGELOG.md
21
CHANGELOG.md
|
@ -6,7 +6,21 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|||
|
||||
## [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
|
||||
|
||||
|
@ -151,8 +165,9 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|||
|
||||
## v0.0.1 - 2014-06-24
|
||||
|
||||
[Unreleased]: https://github.com/bjz/cgmath/compare/v0.8.0...HEAD
|
||||
[v0.7.0]: https://github.com/bjz/cgmath/compare/v0.7.0...v0.8.0
|
||||
[Unreleased]: https://github.com/bjz/cgmath/compare/v0.9.0...HEAD
|
||||
[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.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
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
|
||||
name = "cgmath"
|
||||
version = "0.8.0"
|
||||
version = "0.9.0"
|
||||
authors = ["Brendan Zabarauskas <bjzaba@yahoo.com.au>",
|
||||
"Brian Heylin",
|
||||
"Colin Sherratt",
|
||||
|
@ -35,4 +35,4 @@ rand = "0.3"
|
|||
rustc-serialize = "0.3"
|
||||
|
||||
[dev-dependencies]
|
||||
glium = "0.13.5"
|
||||
glium = "0.14.0"
|
||||
|
|
Loading…
Reference in a new issue