Bump wgpu-core to 0.10.4 and wgpu to 0.10.2

This commit is contained in:
Dzmitry Malyshau 2021-09-23 11:37:58 -04:00 committed by Dzmitry Malyshau
parent 262e9a93fe
commit 9a2e923176
4 changed files with 10 additions and 7 deletions

View File

@ -1,12 +1,15 @@
# Change Log
### wgpu-core-0.10.4 (TBD)
- fix `write_texture` for array textures
### wgpu-hal-0.10.8 (TBD)
- GL and Vulkan:
- Fix renderdoc device pointers.
### wgpu-core-0.10.4, wgpu-0.10.2 (2021-09-23)
- fix `write_texture` for array textures
- fix closing an encoder on validation error
- expose Metal surface creation
- panic with an actual error message in the default handler
### wgpu-hal-0.10.7 (2021-09-14)
- Metal:
- fix stencil back-face state

4
Cargo.lock generated
View File

@ -1772,7 +1772,7 @@ dependencies = [
[[package]]
name = "wgpu"
version = "0.10.1"
version = "0.10.2"
dependencies = [
"arrayvec",
"async-executor",
@ -1806,7 +1806,7 @@ dependencies = [
[[package]]
name = "wgpu-core"
version = "0.10.3"
version = "0.10.4"
dependencies = [
"arrayvec",
"bitflags",

View File

@ -1,6 +1,6 @@
[package]
name = "wgpu-core"
version = "0.10.3"
version = "0.10.4"
authors = ["wgpu developers"]
edition = "2018"
description = "WebGPU core logic on gfx-hal"

View File

@ -1,6 +1,6 @@
[package]
name = "wgpu"
version = "0.10.1"
version = "0.10.2"
authors = ["wgpu developers"]
edition = "2018"
description = "Rusty WebGPU API wrapper"