diff --git a/CHANGELOG.md b/CHANGELOG.md index 97bec9465..daa258653 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Change Log -## v0.6.1 (tbd) +## wgpu-core-0.6.2, wgpu-types-0.6.1 (2020-09-02) + - fix flushing of temporary staging buffers (affects DX11 mostly) + - fix write-only stencil states + +## wgpu-core-0.6.1 (2020-08-28) - allow copying from `Depth32Float` textures - fix usage tracking of read-only buffer storages diff --git a/Cargo.lock b/Cargo.lock index 544f57416..f5e8f5cc8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1619,7 +1619,7 @@ dependencies = [ [[package]] name = "wgpu-core" -version = "0.6.1" +version = "0.6.2" dependencies = [ "arrayvec", "bitflags", @@ -1659,7 +1659,7 @@ dependencies = [ [[package]] name = "wgpu-types" -version = "0.6.0" +version = "0.6.1" dependencies = [ "bitflags", "serde", diff --git a/wgpu-core/Cargo.toml b/wgpu-core/Cargo.toml index c2f4382f2..ef7bfe0a2 100644 --- a/wgpu-core/Cargo.toml +++ b/wgpu-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wgpu-core" -version = "0.6.1" +version = "0.6.2" authors = ["wgpu developers"] edition = "2018" description = "WebGPU core logic on gfx-hal" diff --git a/wgpu-types/Cargo.toml b/wgpu-types/Cargo.toml index bc23adb40..2e9531eab 100644 --- a/wgpu-types/Cargo.toml +++ b/wgpu-types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wgpu-types" -version = "0.6.0" +version = "0.6.1" authors = ["wgpu developers"] edition = "2018" description = "WebGPU types"