Skip to content

Commit

Permalink
Version 1.0.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
nical committed Jul 11, 2022
1 parent 3b47986 commit 97c9e4b
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 20 deletions.
12 changes: 6 additions & 6 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions crates/algorithms/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lyon_algorithms"
version = "0.17.7"
version = "1.0.0"
description = "2D Path manipulation/transformation algorithms."
authors = [ "Nicolas Silva <nical@fastmail.com>" ]
repository = "https://github.com/nical/lyon"
Expand All @@ -19,5 +19,5 @@ path = "src/lib.rs"
serialization = ["serde", "lyon_path/serialization"]

[dependencies]
lyon_path = { version = "0.17.1", path = "../path" }
lyon_path = { version = "1.0.0", path = "../path" }
serde = { version = "1.0", optional = true, features = ["serde_derive"] }
4 changes: 2 additions & 2 deletions crates/extra/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lyon_extra"
version = "0.17.1"
version = "1.0.0"
description = "Various optional utilities for the lyon crate."
authors = [ "Nicolas Silva <nical@fastmail.com>" ]
repository = "https://github.com/nical/lyon"
Expand All @@ -15,4 +15,4 @@ name = "lyon_extra"
serialization = ["lyon_path/serialization"]

[dependencies]
lyon_path = { version = "0.17.1", path = "../path" }
lyon_path = { version = "1.0.0", path = "../path" }
2 changes: 1 addition & 1 deletion crates/geom/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lyon_geom"
version = "0.17.5"
version = "1.0.0"
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
8 changes: 4 additions & 4 deletions crates/lyon/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lyon"
version = "0.17.5"
version = "1.0.0"
description = "2D Graphics rendering on the GPU using tessellation."
authors = [ "Nicolas Silva <nical@fastmail.com>" ]
repository = "https://github.com/nical/lyon"
Expand All @@ -21,6 +21,6 @@ extra = ["lyon_extra"]
profiling = ["lyon_tessellation/profiling"]

[dependencies]
lyon_tessellation = { version = "0.17.5", path = "../tessellation/" }
lyon_algorithms = { version = "0.17.1", path = "../algorithms/" }
lyon_extra = { version = "0.17.1", optional = true, path = "../extra/" }
lyon_tessellation = { version = "1.0.0", path = "../tessellation/" }
lyon_algorithms = { version = "1.0.0", path = "../algorithms/" }
lyon_extra = { version = "1.0.0", optional = true, path = "../extra/" }
4 changes: 2 additions & 2 deletions crates/path/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lyon_path"
version = "0.17.7"
version = "1.0.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 @@ -16,5 +16,5 @@ name = "lyon_path"
serialization = ["serde", "lyon_geom/serialization"]

[dependencies]
lyon_geom = { version = "0.17.0", path = "../geom" }
lyon_geom = { version = "1.0.0", path = "../geom" }
serde = { version = "1.0", optional = true, features = ["serde_derive"] }
6 changes: 3 additions & 3 deletions crates/tessellation/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lyon_tessellation"
version = "0.17.9"
version = "1.0.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 = []
profiling = []

[dependencies]
lyon_path = { version = "0.17.1", path = "../path" }
lyon_path = { version = "1.0.0", path = "../path" }
float_next_after = "0.1.5"
serde = { version = "1.0", optional = true, features = ["serde_derive"] }

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

0 comments on commit 97c9e4b

Please sign in to comment.