Bump version to 0.6.4

This commit is contained in:
Dzmitry Malyshau 2020-10-05 14:46:52 -04:00
parent 5b073e8dbe
commit 9d34b75442
3 changed files with 7 additions and 2 deletions

View File

@ -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

2
Cargo.lock generated
View File

@ -1619,7 +1619,7 @@ dependencies = [
[[package]]
name = "wgpu-core"
version = "0.6.3"
version = "0.6.4"
dependencies = [
"arrayvec",
"bitflags",

View File

@ -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"