diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e4cc7947..f6903ca0f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Change Log +## wgpu-core-0.6.5 (2020-10-14) + - fix setting the stencil reference on an incompatible pipeline + ## wgpu-core-0.6.4 (2020-10-05) - don't request device features that aren't needed - fix texture depth == 0 checks diff --git a/Cargo.lock b/Cargo.lock index def87599f..a0c35697a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1619,7 +1619,7 @@ dependencies = [ [[package]] name = "wgpu-core" -version = "0.6.4" +version = "0.6.5" dependencies = [ "arrayvec", "bitflags", diff --git a/wgpu-core/Cargo.toml b/wgpu-core/Cargo.toml index 1ed57474a..cb865a9dd 100644 --- a/wgpu-core/Cargo.toml +++ b/wgpu-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wgpu-core" -version = "0.6.4" +version = "0.6.5" authors = ["wgpu developers"] edition = "2018" description = "WebGPU core logic on gfx-hal"