Update changelog and versions

This commit is contained in:
Dzmitry Malyshau 2019-03-29 16:59:01 -04:00
parent 4f08d2d8ca
commit 06201ce39a
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

@ -320,8 +320,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]]
@ -498,7 +498,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]]
@ -1384,10 +1384,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]]
@ -1399,7 +1399,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)",
@ -1425,7 +1425,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"] }
wgpu-native = { version = "0.2.5", path = "../wgpu-native", features = ["local"] }
arrayvec = "0.4"