From e7aeb4c2187609e1f21c6cebb354c02fab406851 Mon Sep 17 00:00:00 2001 From: Dzmitry Malyshau Date: Fri, 22 Oct 2021 09:53:02 -0400 Subject: [PATCH] Relase wgpu-hal-0.11.4 and wgpu-core-0.11.2 --- CHANGELOG.md | 14 +++++++++++++- Cargo.lock | 4 ++-- wgpu-core/Cargo.toml | 2 +- wgpu-hal/Cargo.toml | 2 +- 4 files changed, 17 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a8f937fd1..5f3dbb13a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,18 @@ # Change Log -## wgpu-core-0.11.3 (2021-10-16) +## wgpu-core-0.11.2, wgpu-hal-0.11.4 (2021-10-22) + - fix buffer transition barriers + - Metal: + - disable RW buffers on macOS 10.11 + - fix memory leaks in render pass descriptor + - WebGL: + - fix surface reconfiguration + - GLES: + - fix mapping when persistent mapping isn't supported + - allow presentation in Android emulator + - fix sRGB attributes on EGL-1.4 contexts + +## wgpu-hal-0.11.3 (2021-10-16) - GL: - fix mapping flags and buffer initialization - fix context creation when sRGB is available diff --git a/Cargo.lock b/Cargo.lock index 855832d7b..5a7aad22c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1816,7 +1816,7 @@ dependencies = [ [[package]] name = "wgpu-core" -version = "0.11.1" +version = "0.11.2" dependencies = [ "arrayvec", "bitflags", @@ -1838,7 +1838,7 @@ dependencies = [ [[package]] name = "wgpu-hal" -version = "0.11.3" +version = "0.11.4" dependencies = [ "arrayvec", "ash", diff --git a/wgpu-core/Cargo.toml b/wgpu-core/Cargo.toml index 588321296..157427038 100644 --- a/wgpu-core/Cargo.toml +++ b/wgpu-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wgpu-core" -version = "0.11.1" +version = "0.11.2" authors = ["wgpu developers"] edition = "2018" description = "WebGPU core logic on wgpu-hal" diff --git a/wgpu-hal/Cargo.toml b/wgpu-hal/Cargo.toml index 955d76902..3c25eb25d 100644 --- a/wgpu-hal/Cargo.toml +++ b/wgpu-hal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wgpu-hal" -version = "0.11.3" +version = "0.11.4" authors = ["wgpu developers"] edition = "2018" description = "WebGPU hardware abstraction layer"