Skip to content

Commit

Permalink
Merge pull request #1316 from mitchmindtree/publish
Browse files Browse the repository at this point in the history
Publish version 0.68 - text features and vulkano 0.16 update
  • Loading branch information
mitchmindtree authored Nov 3, 2019
2 parents 03fb690 + 486324a commit 78438e1
Show file tree
Hide file tree
Showing 8 changed files with 21 additions and 21 deletions.
4 changes: 2 additions & 2 deletions backends/conrod_example_shared/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "conrod_example_shared"
version = "0.67.0"
version = "0.68.0"
authors = ["mitchmindtree <mitchell.nordine@gmail.com>"]
keywords = ["ui", "widgets", "gui", "interface", "graphics"]
description = "A small crate for sharing common code between conrod examples."
Expand All @@ -12,5 +12,5 @@ documentation = "http://docs.rs/conrod"
categories = ["gui"]

[dependencies]
conrod_core = { path = "../../conrod_core", version = "0.67" }
conrod_core = { path = "../../conrod_core", version = "0.68" }
rand = "0.6"
8 changes: 4 additions & 4 deletions backends/conrod_gfx/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "conrod_gfx"
version = "0.67.0"
version = "0.68.0"
authors = ["Mitchell Nordine <mitchell.nordine@gmail.com>"]
keywords = ["ui", "widgets", "gui", "interface", "graphics"]
description = "An easy-to-use, 100% Rust, extensible 2D GUI library."
Expand All @@ -16,13 +16,13 @@ name = "conrod_gfx"
path = "./src/lib.rs"

[dependencies]
conrod_core = { path = "../../conrod_core", version = "0.67" }
conrod_core = { path = "../../conrod_core", version = "0.68" }
gfx = { version = "0.18" }
gfx_core = { version = "0.9" }

[dev-dependencies]
conrod_example_shared = { path = "../conrod_example_shared", version = "0.67" }
conrod_winit = { path = "../conrod_winit", version = "0.67" }
conrod_example_shared = { path = "../conrod_example_shared", version = "0.68" }
conrod_winit = { path = "../conrod_winit", version = "0.68" }
find_folder = "0.3.0"
image = "0.21"
petgraph = "0.4"
Expand Down
8 changes: 4 additions & 4 deletions backends/conrod_glium/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "conrod_glium"
version = "0.67.0"
version = "0.68.0"
authors = ["Mitchell Nordine <mitchell.nordine@gmail.com>"]
keywords = ["ui", "widgets", "gui", "interface", "graphics"]
description = "An easy-to-use, 100% Rust, extensible 2D GUI library."
Expand All @@ -16,12 +16,12 @@ name = "conrod_glium"
path = "./src/lib.rs"

[dependencies]
conrod_core = { path = "../../conrod_core", version = "0.67" }
conrod_core = { path = "../../conrod_core", version = "0.68" }
glium = { version = "0.24" }

[dev-dependencies]
conrod_example_shared = { path = "../conrod_example_shared", version = "0.67" }
conrod_winit = { path = "../conrod_winit", version = "0.67" }
conrod_example_shared = { path = "../conrod_example_shared", version = "0.68" }
conrod_winit = { path = "../conrod_winit", version = "0.68" }
find_folder = "0.3.0"
image = "0.21"
petgraph = "0.4"
Expand Down
6 changes: 3 additions & 3 deletions backends/conrod_piston/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "conrod_piston"
version = "0.67.0"
version = "0.68.0"
authors = [
"Mitchell Nordine <mitchell.nordine@gmail.com>",
"Sven Nilsen <bvssvni@gmail.com>"
Expand All @@ -22,12 +22,12 @@ name = "conrod_piston"
path = "./src/lib.rs"

[dependencies]
conrod_core = { path = "../../conrod_core", version = "0.67" }
conrod_core = { path = "../../conrod_core", version = "0.68" }
piston2d-graphics = { version = "0.30" }
pistoncore-input = "0.24.0"

[dev-dependencies]
conrod_example_shared = { path = "../conrod_example_shared", version = "0.67" }
conrod_example_shared = { path = "../conrod_example_shared", version = "0.68" }
find_folder = "0.3.0"
image = "0.21"
petgraph = "0.4"
Expand Down
8 changes: 4 additions & 4 deletions backends/conrod_vulkano/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "conrod_vulkano"
version = "0.67.0"
version = "0.68.0"
authors = [
"mitchmindtree <mitchell.nordine@gmail.com>",
"Kurble",
Expand All @@ -17,13 +17,13 @@ categories = ["gui"]
edition = "2018"

[dependencies]
conrod_core = { path = "../../conrod_core", version = "0.67" }
conrod_core = { path = "../../conrod_core", version = "0.68" }
vulkano = "0.16"
vulkano-shaders = "0.16"

[dev-dependencies]
conrod_example_shared = { path = "../conrod_example_shared", version = "0.67" }
conrod_winit = { path = "../conrod_winit", version = "0.67" }
conrod_example_shared = { path = "../conrod_example_shared", version = "0.68" }
conrod_winit = { path = "../conrod_winit", version = "0.68" }
find_folder = "0.3"
image = "0.21"
vulkano-win = "0.16"
Expand Down
2 changes: 1 addition & 1 deletion backends/conrod_winit/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "conrod_winit"
version = "0.67.0"
version = "0.68.0"
authors = [
"Mitchell Nordine <mitchell.nordine@gmail.com>",
"Sven Nilsen <bvssvni@gmail.com>"
Expand Down
4 changes: 2 additions & 2 deletions conrod_core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "conrod_core"
version = "0.67.0"
version = "0.68.0"
authors = [
"Mitchell Nordine <mitchell.nordine@gmail.com>",
"Sven Nilsen <bvssvni@gmail.com>"
Expand All @@ -22,7 +22,7 @@ stdweb = [ "instant/stdweb" ]
wasm-bindgen = [ "instant/wasm-bindgen" ]

[dependencies]
conrod_derive = { path = "../conrod_derive", version = "0.67" }
conrod_derive = { path = "../conrod_derive", version = "0.68" }
daggy = "0.5"
fnv = "1.0"
num = "0.2"
Expand Down
2 changes: 1 addition & 1 deletion conrod_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "conrod_derive"
version = "0.67.0"
version = "0.68.0"
authors = ["mitchmindtree <mitchell.nordine@gmail.com>"]
description = "A crate providing procedural macros for the conrod library"
license = "MIT OR Apache-2.0"
Expand Down

0 comments on commit 78438e1

Please sign in to comment.