diff --git a/CHANGELOG.md b/CHANGELOG.md index a09534703..b05429a68 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,11 @@ # Change Log -### wgpu-hal-0.10.5 (2021-09-12) +### wgpu-hal-0.10.6 (2021-09-12) - Metal: - fix stencil operations - fix memory leak on M1 when out of focus + - fix depth clamping checks + - fix unsized storage buffers beyond the first ### wgpu-core-0.10.3, wgpu-hal-0.10.4 (2021-09-08) - Vulkan: diff --git a/Cargo.lock b/Cargo.lock index 5ccd4d664..a2d2fe711 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1828,7 +1828,7 @@ dependencies = [ [[package]] name = "wgpu-hal" -version = "0.10.5" +version = "0.10.6" dependencies = [ "arrayvec", "ash", diff --git a/wgpu-hal/Cargo.toml b/wgpu-hal/Cargo.toml index fa0cdfbf7..1c7b70bac 100644 --- a/wgpu-hal/Cargo.toml +++ b/wgpu-hal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wgpu-hal" -version = "0.10.5" +version = "0.10.6" authors = ["wgpu developers"] edition = "2018" description = "WebGPU hardware abstraction layer"