diff --git a/CHANGELOG.md b/CHANGELOG.md index 7c420277a..ca8300970 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/Cargo.lock b/Cargo.lock index 8d4ab99fa..bb817183b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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", diff --git a/wgpu-core/Cargo.toml b/wgpu-core/Cargo.toml index 902611346..7b8c1597c 100644 --- a/wgpu-core/Cargo.toml +++ b/wgpu-core/Cargo.toml @@ -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" diff --git a/wgpu/Cargo.toml b/wgpu/Cargo.toml index f3509efc3..f7808152b 100644 --- a/wgpu/Cargo.toml +++ b/wgpu/Cargo.toml @@ -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"