Skip to content

Commit

Permalink
Auto merge of #365 - nical:0.20.0, r=kvark
Browse files Browse the repository at this point in the history
Version 0.20.0

The majority of the planned breaking changes are in.
Version 0.21 will probably follow soon with the matrix convention changes, but It'd be nice to update WebRender before that to avoid the complication of updating webrender for both the matrix changes and all of the API breaks that landed recently.

Also removed the rand dependency as it looks like it isn't used anywhere.

<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/euclid/365)
<!-- Reviewable:end -->
  • Loading branch information
bors-servo authored Jul 17, 2019
2 parents 8c7d3f4 + fc316bd commit aea5eeb
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
3 changes: 1 addition & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "euclid"
version = "0.19.10"
version = "0.20.0"
authors = ["The Servo Project Developers"]
description = "Geometry primitives"
documentation = "https://docs.rs/euclid/"
Expand All @@ -18,5 +18,4 @@ serde = { version = "1.0", features = ["serde_derive"], optional = true }
mint = {version = "0.5.1", optional = true}

[dev-dependencies]
rand = "0.4"
serde_test = "1.0"
2 changes: 0 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,6 @@ extern crate serde;
pub extern crate mint;
extern crate num_traits;
#[cfg(test)]
extern crate rand;
#[cfg(test)]
use std as core;

pub use box2d::Box2D;
Expand Down

0 comments on commit aea5eeb

Please sign in to comment.