Skip to content

Commit

Permalink
Version 0.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nical committed Feb 12, 2019
1 parent ee125d1 commit 5b4da31
Show file tree
Hide file tree
Showing 9 changed files with 55 additions and 55 deletions.
68 changes: 34 additions & 34 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]

name = "lyon"
version = "0.11.1"
version = "0.13.0"
description = "2D Graphics rendering on the GPU using tessellation."
authors = [ "Nicolas Silva <nical@fastmail.com>" ]
repository = "https://github.com/nical/lyon"
Expand Down Expand Up @@ -35,11 +35,11 @@ libtess2 = ["lyon_tess2"]

[dependencies]

lyon_tessellation = { version = "0.11.0", path = "tessellation/" }
lyon_algorithms = { version = "0.11.1", path = "algorithms/" }
lyon_extra = { version = "0.11.0", optional = true, path = "extra/" }
lyon_svg = { version = "0.11.0", optional = true, path = "svg/" }
lyon_tess2 = { version = "0.11.0", optional = true, path = "tess2/" }
lyon_tessellation = { version = "0.13.0", path = "tessellation/" }
lyon_algorithms = { version = "0.13.0", path = "algorithms/" }
lyon_extra = { version = "0.13.0", optional = true, path = "extra/" }
lyon_svg = { version = "0.13.0", optional = true, path = "svg/" }
lyon_tess2 = { version = "0.13.0", optional = true, path = "tess2/" }

[workspace]
members = [
Expand Down
4 changes: 2 additions & 2 deletions algorithms/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]

name = "lyon_algorithms"
version = "0.11.1"
version = "0.13.0"
description = "2D Path manipulation/transformation algorithms."
authors = [ "Nicolas Silva <nical@fastmail.com>" ]
repository = "https://github.com/nical/lyon"
Expand All @@ -19,6 +19,6 @@ serialization = ["serde", "lyon_path/serialization"]

[dependencies]

lyon_path = { version = "0.12.0", path = "../path" }
lyon_path = { version = "0.13.0", path = "../path" }
serde = { version = "1.0", optional = true, features = ["serde_derive"] }
sid = "0.5.2"
6 changes: 3 additions & 3 deletions extra/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]

name = "lyon_extra"
version = "0.11.0"
version = "0.13.0"
description = "Various optional utilities for the lyon crate."
authors = [ "Nicolas Silva <nical@fastmail.com>" ]
repository = "https://github.com/nical/lyon"
Expand All @@ -14,5 +14,5 @@ name = "lyon_extra"

[dependencies]

lyon_path = { version = "0.12.0", path = "../path" }
lyon_svg = { version = "0.11.0", path = "../svg" }
lyon_path = { version = "0.13.0", path = "../path" }
lyon_svg = { version = "0.13.0", path = "../svg" }
2 changes: 1 addition & 1 deletion geom/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lyon_geom"
version = "0.12.2"
version = "0.12.3"
description = "2D quadratic and cubic bézier arcs and line segment math on top of euclid."
authors = ["Nicolas Silva <nical@fastmail.com>"]
repository = "https://github.com/nical/lyon"
Expand Down
4 changes: 2 additions & 2 deletions path/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lyon_path"
version = "0.12.0"
version = "0.13.0"
description = "Types and utilities to store, build and iterate over 2D paths."
authors = [ "Nicolas Silva <nical@fastmail.com>" ]
repository = "https://github.com/nical/lyon"
Expand All @@ -15,5 +15,5 @@ name = "lyon_path"
serialization = ["serde", "lyon_geom/serialization"]

[dependencies]
lyon_geom = { version = "0.12.1", path = "../geom" }
lyon_geom = { version = "0.12.3", path = "../geom" }
serde = { version = "1.0", optional = true, features = ["serde_derive"] }
4 changes: 2 additions & 2 deletions svg/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]

name = "lyon_svg"
version = "0.11.0"
version = "0.13.0"
description = "SVG helpers for the lyon crates."
authors = [ "Nicolas Silva <nical@fastmail.com>" ]
repository = "https://github.com/nical/lyon"
Expand All @@ -13,6 +13,6 @@ path = "src/lib.rs"

[dependencies]

lyon_path = { version = "0.12.0", path = "../path" }
lyon_path = { version = "0.13.0", path = "../path" }

svgparser = "0.8"
4 changes: 2 additions & 2 deletions tess2/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]

name = "lyon_tess2"
version = "0.11.0"
version = "0.13.0"
description = "An additional path tessellator for lyon using libtess2."
authors = [ "Nicolas Silva <nical@fastmail.com>" ]
repository = "https://github.com/nical/lyon"
Expand All @@ -19,6 +19,6 @@ serialization = ["serde", "lyon_tessellation/serialization"]

[dependencies]

lyon_tessellation = { version = "0.11.0", path = "../tessellation" }
lyon_tessellation = { version = "0.13.0", path = "../tessellation" }
serde = { version = "1.0", optional = true, features = ["serde_derive"] }
tess2-sys = "0.0.1"
6 changes: 3 additions & 3 deletions tessellation/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]

name = "lyon_tessellation"
version = "0.11.0"
version = "0.13.0"
description = "A low level path tessellation library."
authors = [ "Nicolas Silva <nical@fastmail.com>" ]
repository = "https://github.com/nical/lyon"
Expand All @@ -20,9 +20,9 @@ debugger = []

[dependencies]

lyon_path = { version = "0.12.0", path = "../path" }
lyon_path = { version = "0.13.0", path = "../path" }
sid = "0.5"
serde = { version = "1.0", optional = true, features = ["serde_derive"] }

[dev-dependencies]
lyon_extra = { version = "0.11.0", path = "../extra" }
lyon_extra = { version = "0.13.0", path = "../extra" }

0 comments on commit 5b4da31

Please sign in to comment.