Skip to content

Commit 14277a0

Browse files
authored
Merge pull request #411 from brendanzab/version-bump
Bump cargo version to v0.14.1
2 parents bb7d342 + f2943d7 commit 14277a0

File tree

4 files changed

+15
-7
lines changed

4 files changed

+15
-7
lines changed

CHANGELOG.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@ This project adheres to [Semantic Versioning](http://semver.org/).
66

77
## [Unreleased]
88

9+
## [v0.14.1] - 2017-05-02
10+
11+
### Fixed
12+
13+
- Added a workaround for rust-lang/rust#41478, and in the process cleaned up
14+
some type projections for angles
15+
916
## [v0.14.0] - 2017-04-26
1017

1118
## Changed
@@ -251,8 +258,9 @@ This project adheres to [Semantic Versioning](http://semver.org/).
251258

252259
## v0.0.1 - 2014-06-24
253260

254-
[Unreleased]: https://github.com/brendanzab/cgmath/compare/v0.14.0...HEAD
255-
[v0.13.1]: https://github.com/brendanzab/cgmath/compare/v0.13.1...v0.14.0
261+
[Unreleased]: https://github.com/brendanzab/cgmath/compare/v0.14.1...HEAD
262+
[v0.14.1]: https://github.com/brendanzab/cgmath/compare/v0.14.0...v0.14.1
263+
[v0.14.0]: https://github.com/brendanzab/cgmath/compare/v0.13.1...v0.14.0
256264
[v0.13.1]: https://github.com/brendanzab/cgmath/compare/v0.13.0...v0.13.1
257265
[v0.12.0]: https://github.com/brendanzab/cgmath/compare/v0.12.0...v0.13.0
258266
[v0.12.0]: https://github.com/brendanzab/cgmath/compare/v0.11.0...v0.12.0

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
name = "cgmath"
4-
version = "0.14.0"
4+
version = "0.14.1"
55
authors = ["Brendan Zabarauskas <[email protected]>"]
66
license = "Apache-2.0"
77
description = "A linear algebra and mathematics library for computer graphics."

src/rotation.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ use vector::{Vector2, Vector3};
3232
/// creates a circular motion, and preserves at least one point in the space.
3333
pub trait Rotation<P: EuclideanSpace>: Sized + Copy + One where
3434
// FIXME: Ugly type signatures - blocked by rust-lang/rust#24092
35-
Self: ApproxEq<Epsilon = <P as EuclideanSpace>::Scalar>,
36-
<P as EuclideanSpace>::Scalar: BaseFloat,
35+
Self: ApproxEq<Epsilon = P::Scalar>,
36+
P::Scalar: BaseFloat,
3737
Self: iter::Product<Self>,
3838
{
3939
/// Create a rotation to a given direction with an 'up' vector.

src/transform.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,9 @@ pub struct Decomposed<V: VectorSpace, R> {
6464
}
6565

6666
impl<P: EuclideanSpace, R: Rotation<P>> Transform<P> for Decomposed<P::Diff, R>
67-
where <P as EuclideanSpace>::Scalar: BaseFloat,
67+
where P::Scalar: BaseFloat,
6868
// FIXME: Investigate why this is needed!
69-
<P as EuclideanSpace>::Diff: VectorSpace
69+
P::Diff: VectorSpace
7070
{
7171
#[inline]
7272
fn one() -> Decomposed<P::Diff, R> {

0 commit comments

Comments
 (0)