commit
3296456da2
3 changed files with 21 additions and 8 deletions
15
CHANGELOG.md
15
CHANGELOG.md
|
@ -6,6 +6,18 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## [v0.11.0] - 2016-08-17
|
||||
|
||||
### Added
|
||||
|
||||
- `Quaternion::from_arc`
|
||||
|
||||
### Changed
|
||||
|
||||
- Change the angle types to be tuple structs
|
||||
- Make from-angle constructors take generic `Into<Rad<S>>` values
|
||||
- Fix `Decomposed::concat` implementation
|
||||
|
||||
## [v0.10.0] - 2016-05-11
|
||||
|
||||
### Added
|
||||
|
@ -204,7 +216,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|||
|
||||
## v0.0.1 - 2014-06-24
|
||||
|
||||
[Unreleased]: https://github.com/bjz/cgmath/compare/v0.10.0...HEAD
|
||||
[Unreleased]: https://github.com/bjz/cgmath/compare/v0.11.0...HEAD
|
||||
[v0.11.0]: https://github.com/bjz/cgmath/compare/v0.10.0...v0.11.0
|
||||
[v0.10.0]: https://github.com/bjz/cgmath/compare/v0.9.1...v0.10.0
|
||||
[v0.9.1]: https://github.com/bjz/cgmath/compare/v0.9.0...v0.9.1
|
||||
[v0.9.0]: https://github.com/bjz/cgmath/compare/v0.8.0...v0.9.0
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
|
||||
name = "cgmath"
|
||||
version = "0.10.0"
|
||||
version = "0.11.0"
|
||||
authors = ["Brendan Zabarauskas <bjzaba@yahoo.com.au>",
|
||||
"Brian Heylin",
|
||||
"Colin Sherratt",
|
||||
|
@ -16,9 +16,9 @@ authors = ["Brendan Zabarauskas <bjzaba@yahoo.com.au>",
|
|||
license = "Apache-2.0"
|
||||
description = "A linear algebra and mathematics library for computer graphics."
|
||||
|
||||
documentation = "http://bjz.github.io/cgmath"
|
||||
homepage = "https://github.com/bjz/cgmath"
|
||||
repository = "https://github.com/bjz/cgmath"
|
||||
documentation = "http://brendanzab.github.io/cgmath"
|
||||
homepage = "https://github.com/brendanzab/cgmath"
|
||||
repository = "https://github.com/brendanzab/cgmath"
|
||||
readme = "README.md"
|
||||
|
||||
keywords = ["gamedev", "math", "matrix", "vector", "quaternion"]
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
# cgmath-rs
|
||||
|
||||
[![Build Status](https://travis-ci.org/bjz/cgmath.svg?branch=master)](https://travis-ci.org/bjz/cgmath)
|
||||
[![Build Status](https://travis-ci.org/brendanzab/cgmath.svg?branch=master)](https://travis-ci.org/brendanzab/cgmath)
|
||||
[![Version](https://img.shields.io/crates/v/cgmath.svg)](https://crates.io/crates/cgmath)
|
||||
[![License](https://img.shields.io/crates/l/cgmath.svg)](https://github.com/bjz/cgmath/blob/master/LICENSE)
|
||||
[![License](https://img.shields.io/crates/l/cgmath.svg)](https://github.com/brendanzab/cgmath/blob/master/LICENSE)
|
||||
[![Downloads](https://img.shields.io/crates/d/cgmath.svg)](https://crates.io/crates/cgmath)
|
||||
|
||||
[Documentation](http://brendanzab.github.io/cgmath/)
|
||||
|
|
Loading…
Reference in a new issue