diff --git a/CHANGELOG.md b/CHANGELOG.md index 6fef82531..9e4cc7947 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Change Log +## wgpu-core-0.6.4 (2020-10-05) + - don't request device features that aren't needed + - fix texture depth == 0 checks + - fix the order of texture feature checks + ## wgpu-core-0.6.3 (2020-09-04) - fix group bindings that aren't related to the current pipeline diff --git a/Cargo.lock b/Cargo.lock index 8276797b4..0d59743fa 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1619,7 +1619,7 @@ dependencies = [ [[package]] name = "wgpu-core" -version = "0.6.3" +version = "0.6.4" dependencies = [ "arrayvec", "bitflags", diff --git a/wgpu-core/Cargo.toml b/wgpu-core/Cargo.toml index 9592b6ad4..1ed57474a 100644 --- a/wgpu-core/Cargo.toml +++ b/wgpu-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wgpu-core" -version = "0.6.3" +version = "0.6.4" authors = ["wgpu developers"] edition = "2018" description = "WebGPU core logic on gfx-hal"