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 # 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) ## v0.2.3 (20-03-2019)
- fixed vertex format mapping - fixed vertex format mapping
- fixed building with "empty" backend on Windows - fixed building with "empty" backend on Windows

14
Cargo.lock generated
View File

@ -320,8 +320,8 @@ name = "examples"
version = "0.1.0" version = "0.1.0"
dependencies = [ dependencies = [
"env_logger 0.5.13 (registry+https://github.com/rust-lang/crates.io-index)", "env_logger 0.5.13 (registry+https://github.com/rust-lang/crates.io-index)",
"wgpu 0.2.1", "wgpu 0.2.2",
"wgpu-native 0.2.4", "wgpu-native 0.2.5",
] ]
[[package]] [[package]]
@ -498,7 +498,7 @@ dependencies = [
"env_logger 0.5.13 (registry+https://github.com/rust-lang/crates.io-index)", "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)", "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)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
"wgpu 0.2.1", "wgpu 0.2.2",
] ]
[[package]] [[package]]
@ -1384,10 +1384,10 @@ dependencies = [
[[package]] [[package]]
name = "wgpu" name = "wgpu"
version = "0.2.1" version = "0.2.2"
dependencies = [ dependencies = [
"arrayvec 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)", "arrayvec 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)",
"wgpu-native 0.2.4", "wgpu-native 0.2.5",
] ]
[[package]] [[package]]
@ -1399,7 +1399,7 @@ dependencies = [
[[package]] [[package]]
name = "wgpu-native" name = "wgpu-native"
version = "0.2.4" version = "0.2.5"
dependencies = [ dependencies = [
"arrayvec 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)", "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)", "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)", "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)", "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)", "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)",
"wgpu-native 0.2.4", "wgpu-native 0.2.5",
] ]
[[package]] [[package]]

View File

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

View File

@ -1,6 +1,6 @@
[package] [package]
name = "wgpu" name = "wgpu"
version = "0.2.1" version = "0.2.2"
authors = [ authors = [
"Dzmitry Malyshau <kvark@mozilla.com>", "Dzmitry Malyshau <kvark@mozilla.com>",
"Joshua Groves <josh@joshgroves.com>", "Joshua Groves <josh@joshgroves.com>",
@ -23,5 +23,5 @@ dx12 = ["wgpu-native/gfx-backend-dx12"]
vulkan = ["wgpu-native/gfx-backend-vulkan"] vulkan = ["wgpu-native/gfx-backend-vulkan"]
[dependencies] [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" arrayvec = "0.4"