Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Zakarum committed Oct 14, 2019
1 parent b3b3870 commit 74eef19
Show file tree
Hide file tree
Showing 14 changed files with 64 additions and 64 deletions.
2 changes: 1 addition & 1 deletion chain/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rendy-chain"
version = "0.4.0"
version = "0.4.1"
authors = ["omni-viral <scareaangel@gmail.com>"]
edition = "2018"
repository = "https://github.com/amethyst/rendy"
Expand Down
2 changes: 1 addition & 1 deletion command/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rendy-command"
version = "0.4.0"
version = "0.4.1"
authors = ["omni-viral <scareaangel@gmail.com>"]
edition = "2018"
repository = "https://github.com/amethyst/rendy"
Expand Down
2 changes: 1 addition & 1 deletion descriptor/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rendy-descriptor"
version = "0.4.0"
version = "0.4.1"
authors = ["omni-viral <scareaangel@gmail.com>"]
edition = "2018"
repository = "https://github.com/amethyst/rendy"
Expand Down
14 changes: 7 additions & 7 deletions factory/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rendy-factory"
version = "0.4.0"
version = "0.4.1"
authors = ["omni-viral <scareaangel@gmail.com>"]
edition = "2018"
repository = "https://github.com/amethyst/rendy"
Expand All @@ -24,12 +24,12 @@ no-slow-safety-checks = ["rendy-util/no-slow-safety-checks"]
profiler = ["thread_profiler/thread_profiler"]

[dependencies]
rendy-memory = { version = "0.4.0", path = "../memory" }
rendy-resource = { version = "0.4.0", path = "../resource" }
rendy-command = { version = "0.4.0", path = "../command" }
rendy-descriptor = { version = "0.4.0", path = "../descriptor" }
rendy-wsi = { version = "0.4.0", path = "../wsi" }
rendy-util = { version = "0.4.0", path = "../util" }
rendy-memory = { version = "0.4.1", path = "../memory" }
rendy-resource = { version = "0.4.1", path = "../resource" }
rendy-command = { version = "0.4.1", path = "../command" }
rendy-descriptor = { version = "0.4.1", path = "../descriptor" }
rendy-wsi = { version = "0.4.1", path = "../wsi" }
rendy-util = { version = "0.4.1", path = "../util" }

gfx-hal = "0.3"
derivative = "1.0"
Expand Down
12 changes: 6 additions & 6 deletions frame/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rendy-frame"
version = "0.4.0"
version = "0.4.1"
authors = ["omni-viral <scareaangel@gmail.com>"]
edition = "2018"
repository = "https://github.com/amethyst/rendy"
Expand All @@ -15,11 +15,11 @@ no-slow-safety-checks = ["rendy-util/no-slow-safety-checks"]
profiler = ["thread_profiler/thread_profiler"]

[dependencies]
rendy-command = { version = "0.4.0", path = "../command" }
rendy-factory = { version = "0.4.0", path = "../factory" }
rendy-memory = { version = "0.4.0", path = "../memory" }
rendy-resource = { version = "0.4.0", path = "../resource" }
rendy-util = { version = "0.4.0", path = "../util" }
rendy-command = { version = "0.4.1", path = "../command" }
rendy-factory = { version = "0.4.1", path = "../factory" }
rendy-memory = { version = "0.4.1", path = "../memory" }
rendy-resource = { version = "0.4.1", path = "../resource" }
rendy-util = { version = "0.4.1", path = "../util" }

derivative = "1.0"
either = "1.5"
Expand Down
22 changes: 11 additions & 11 deletions graph/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rendy-graph"
version = "0.4.0"
version = "0.4.1"
authors = ["omni-viral <scareaangel@gmail.com>"]
edition = "2018"
repository = "https://github.com/amethyst/rendy"
Expand All @@ -19,16 +19,16 @@ no-slow-safety-checks = ["rendy-util/no-slow-safety-checks"]
profiler = ["thread_profiler/thread_profiler"]

[dependencies]
rendy-chain = { version = "0.4.0", path = "../chain" }
rendy-command = { version = "0.4.0", path = "../command" }
rendy-descriptor = { version = "0.4.0", path = "../descriptor" }
rendy-factory = { version = "0.4.0", path = "../factory" }
rendy-frame = { version = "0.4.0", path = "../frame" }
rendy-memory = { version = "0.4.0", path = "../memory" }
rendy-resource = { version = "0.4.0", path = "../resource" }
rendy-util = { version = "0.4.0", path = "../util" }
rendy-wsi = { version = "0.4.0", path = "../wsi" }
rendy-shader = { version = "0.4.0", path = "../shader" }
rendy-chain = { version = "0.4.1", path = "../chain" }
rendy-command = { version = "0.4.1", path = "../command" }
rendy-descriptor = { version = "0.4.1", path = "../descriptor" }
rendy-factory = { version = "0.4.1", path = "../factory" }
rendy-frame = { version = "0.4.1", path = "../frame" }
rendy-memory = { version = "0.4.1", path = "../memory" }
rendy-resource = { version = "0.4.1", path = "../resource" }
rendy-util = { version = "0.4.1", path = "../util" }
rendy-wsi = { version = "0.4.1", path = "../wsi" }
rendy-shader = { version = "0.4.1", path = "../shader" }

gfx-hal = "0.3"

Expand Down
2 changes: 1 addition & 1 deletion memory/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rendy-memory"
version = "0.4.0"
version = "0.4.1"
authors = ["omni-viral <scareaangel@gmail.com>"]
edition = "2018"
repository = "https://github.com/amethyst/rendy"
Expand Down
12 changes: 6 additions & 6 deletions mesh/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rendy-mesh"
version = "0.4.0"
version = "0.4.1"
authors = ["omni-viral <scareaangel@gmail.com>"]
edition = "2018"
repository = "https://github.com/amethyst/rendy"
Expand All @@ -17,11 +17,11 @@ serde-1 = ["serde", "serde_bytes", "gfx-hal/serde", "smallvec/serde", "rendy-fac
no-slow-safety-checks = ["rendy-util/no-slow-safety-checks"]

[dependencies]
rendy-command = { version = "0.4.0", path = "../command" }
rendy-memory = { version = "0.4.0", path = "../memory" }
rendy-resource = { version = "0.4.0", path = "../resource" }
rendy-factory = { version = "0.4.0", path = "../factory" }
rendy-util = { version = "0.4.0", path = "../util" }
rendy-command = { version = "0.4.1", path = "../command" }
rendy-memory = { version = "0.4.1", path = "../memory" }
rendy-resource = { version = "0.4.1", path = "../resource" }
rendy-factory = { version = "0.4.1", path = "../factory" }
rendy-util = { version = "0.4.1", path = "../util" }

gfx-hal = "0.3"

Expand Down
26 changes: 13 additions & 13 deletions rendy/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rendy"
version = "0.4.0"
version = "0.4.1"
authors = ["omni-viral <scareaangel@gmail.com>"]
edition = "2018"
repository = "https://github.com/amethyst/rendy"
Expand Down Expand Up @@ -54,18 +54,18 @@ full = ["base", "mesh-obj", "texture-image", "texture-palette", "spirv-reflectio
default = [ "base", "shader-compiler", "spirv-reflection", "wsi-winit" ]

[dependencies]
rendy-command = { version = "0.4.0", path = "../command", optional = true }
rendy-descriptor = { version = "0.4.0", path = "../descriptor", optional = true }
rendy-factory = { version = "0.4.0", path = "../factory", optional = true }
rendy-frame = { version = "0.4.0", path = "../frame", optional = true }
rendy-graph = { version = "0.4.0", path = "../graph", optional = true }
rendy-memory = { version = "0.4.0", path = "../memory", optional = true }
rendy-mesh = { version = "0.4.0", path = "../mesh", optional = true }
rendy-shader = { version = "0.4.0", path = "../shader", optional = true }
rendy-resource = { version = "0.4.0", path = "../resource", optional = true }
rendy-texture = { version = "0.4.0", path = "../texture", optional = true }
rendy-util = { version = "0.4.0", path = "../util" }
rendy-wsi = { version = "0.4.0", path = "../wsi", optional = true }
rendy-command = { version = "0.4.1", path = "../command", optional = true }
rendy-descriptor = { version = "0.4.1", path = "../descriptor", optional = true }
rendy-factory = { version = "0.4.1", path = "../factory", optional = true }
rendy-frame = { version = "0.4.1", path = "../frame", optional = true }
rendy-graph = { version = "0.4.1", path = "../graph", optional = true }
rendy-memory = { version = "0.4.1", path = "../memory", optional = true }
rendy-mesh = { version = "0.4.1", path = "../mesh", optional = true }
rendy-shader = { version = "0.4.1", path = "../shader", optional = true }
rendy-resource = { version = "0.4.1", path = "../resource", optional = true }
rendy-texture = { version = "0.4.1", path = "../texture", optional = true }
rendy-util = { version = "0.4.1", path = "../util" }
rendy-wsi = { version = "0.4.1", path = "../wsi", optional = true }

failure = "0.1"
gfx-hal = "0.3"
Expand Down
8 changes: 4 additions & 4 deletions resource/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rendy-resource"
version = "0.4.0"
version = "0.4.1"
authors = ["omni-viral <scareaangel@gmail.com>"]
edition = "2018"
repository = "https://github.com/amethyst/rendy"
Expand All @@ -20,7 +20,7 @@ derivative = "1.0"
failure = "0.1"
log = "0.4"
relevant = { version = "0.4", features = ["log", "backtrace"] }
rendy-descriptor = { version = "0.4.0", path = "../descriptor" }
rendy-memory = { version = "0.4.0", path = "../memory" }
rendy-util = { version = "0.4.0", path = "../util" }
rendy-descriptor = { version = "0.4.1", path = "../descriptor" }
rendy-memory = { version = "0.4.1", path = "../memory" }
rendy-util = { version = "0.4.1", path = "../util" }
smallvec = "0.6"
6 changes: 3 additions & 3 deletions shader/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rendy-shader"
version = "0.4.0"
version = "0.4.1"
authors = ["omni-viral <scareaangel@gmail.com>", "Walter Pearce <jaynus@gmail.com>"]
edition = "2018"
repository = "https://github.com/amethyst/rendy"
Expand All @@ -21,8 +21,8 @@ derivative = "1.0"
log = "0.4"
failure = "0.1"
gfx-hal = "0.3"
rendy-factory = { version = "0.4.0", path = "../factory" }
rendy-util = { version = "0.4.0", path = "../util" }
rendy-factory = { version = "0.4.1", path = "../factory" }
rendy-util = { version = "0.4.1", path = "../util" }
shaderc = { version = "0.5", optional = true }
serde = { version = "1.0", optional = true, features = ["derive"] }
spirv-reflect = { version = "0.2.1", optional = true }
10 changes: 5 additions & 5 deletions texture/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rendy-texture"
version = "0.4.0"
version = "0.4.1"
authors = ["omni-viral <scareaangel@gmail.com>"]
edition = "2018"
repository = "https://github.com/amethyst/rendy"
Expand All @@ -16,10 +16,10 @@ serde-1 = ["serde", "gfx-hal/serde"]
profile = ["thread_profiler/thread_profiler"]

[dependencies]
rendy-memory = { version = "0.4.0", path = "../memory" }
rendy-resource = { version = "0.4.0", path = "../resource" }
rendy-factory = { version = "0.4.0", path = "../factory" }
rendy-util = { version = "0.4.0", path = "../util" }
rendy-memory = { version = "0.4.1", path = "../memory" }
rendy-resource = { version = "0.4.1", path = "../resource" }
rendy-factory = { version = "0.4.1", path = "../factory" }
rendy-util = { version = "0.4.1", path = "../util" }

gfx-hal = "0.3"

Expand Down
2 changes: 1 addition & 1 deletion util/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rendy-util"
version = "0.4.0"
version = "0.4.1"
authors = ["omni-viral <scareaangel@gmail.com>"]
edition = "2018"
repository = "https://github.com/amethyst/rendy"
Expand Down
8 changes: 4 additions & 4 deletions wsi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rendy-wsi"
version = "0.4.0"
version = "0.4.1"
authors = ["omni-viral <scareaangel@gmail.com>"]
edition = "2018"
repository = "https://github.com/amethyst/rendy"
Expand All @@ -18,9 +18,9 @@ vulkan = ["rendy-util/vulkan"]
no-slow-safety-checks = ["rendy-util/no-slow-safety-checks"]

[dependencies]
rendy-memory = { version = "0.4.0", path = "../memory" }
rendy-resource = { version = "0.4.0", path = "../resource" }
rendy-util = { version = "0.4.0", path = "../util" }
rendy-memory = { version = "0.4.1", path = "../memory" }
rendy-resource = { version = "0.4.1", path = "../resource" }
rendy-util = { version = "0.4.1", path = "../util" }

gfx-hal = "0.3"
derivative = "1.0"
Expand Down

0 comments on commit 74eef19

Please sign in to comment.