Update changelog and versions

This commit is contained in:
Dzmitry Malyshau 2019-03-29 16:59:01 -04:00
parent a3ffa7072a
commit c283a8b115
4 changed files with 16 additions and 10 deletions

View File

@ -1,5 +1,11 @@
# Change Log
## v0.2.5 (31-03-2019)
- fixed submission tracking
- added support for blend colors
- fixed bind group compatibility at the gfx-hal level
- validating the bind groups and blend colors
## v0.2.3 (20-03-2019)
- fixed vertex format mapping
- fixed building with "empty" backend on Windows

14
Cargo.lock generated
View File

@ -325,8 +325,8 @@ name = "examples"
version = "0.1.0"
dependencies = [
"env_logger 0.5.13 (registry+https://github.com/rust-lang/crates.io-index)",
"wgpu 0.2.1",
"wgpu-native 0.2.4",
"wgpu 0.2.2",
"wgpu-native 0.2.5",
]
[[package]]
@ -503,7 +503,7 @@ dependencies = [
"env_logger 0.5.13 (registry+https://github.com/rust-lang/crates.io-index)",
"glsl-to-spirv 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
"log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
"wgpu 0.2.1",
"wgpu 0.2.2",
]
[[package]]
@ -1389,10 +1389,10 @@ dependencies = [
[[package]]
name = "wgpu"
version = "0.2.1"
version = "0.2.2"
dependencies = [
"arrayvec 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)",
"wgpu-native 0.2.4",
"wgpu-native 0.2.5",
]
[[package]]
@ -1404,7 +1404,7 @@ dependencies = [
[[package]]
name = "wgpu-native"
version = "0.2.4"
version = "0.2.5"
dependencies = [
"arrayvec 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)",
"bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
@ -1431,7 +1431,7 @@ dependencies = [
"log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
"parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
"serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)",
"wgpu-native 0.2.4",
"wgpu-native 0.2.5",
]
[[package]]

View File

@ -1,6 +1,6 @@
[package]
name = "wgpu-native"
version = "0.2.4"
version = "0.2.5"
authors = [
"Dzmitry Malyshau <kvark@mozilla.com>",
"Joshua Groves <josh@joshgroves.com>",

View File

@ -1,6 +1,6 @@
[package]
name = "wgpu"
version = "0.2.1"
version = "0.2.2"
authors = [
"Dzmitry Malyshau <kvark@mozilla.com>",
"Joshua Groves <josh@joshgroves.com>",
@ -23,5 +23,5 @@ dx12 = ["wgpu-native/gfx-backend-dx12"]
vulkan = ["wgpu-native/gfx-backend-vulkan"]
[dependencies]
wgpu-native = { version = "0.2", path = "../wgpu-native", features = ["local", "window-winit"] }
wgpu-native = { version = "0.2.5", path = "../wgpu-native", features = ["local", "window-winit"] }
arrayvec = "0.4"