From 47336441e5eb99a36c4bbbf5e692fed9a4f08712 Mon Sep 17 00:00:00 2001 From: Dzmitry Malyshau Date: Sat, 18 Apr 2020 14:21:30 -0400 Subject: [PATCH] Version bump to 0.5.3 and changelog update --- CHANGELOG.md | 4 ++++ Cargo.lock | 6 +++--- wgpu-core/Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9546c72fd..4743531b1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log +## v0.5.3 (18-04-2020) + - fix reading access to storage textures + - another fix to layout transitions for swapchain images + ## v0.5.2 (15-04-2020) - fix read-only storage flags - fix pipeline layout life time diff --git a/Cargo.lock b/Cargo.lock index 3dbdc9ece..342a000df 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -653,7 +653,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "wgpu-core" -version = "0.5.2" +version = "0.5.3" dependencies = [ "arrayvec 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", "battery 0.7.5 (registry+https://github.com/rust-lang/crates.io-index)", @@ -687,7 +687,7 @@ dependencies = [ "objc 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", "raw-window-handle 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", - "wgpu-core 0.5.2", + "wgpu-core 0.5.3", "wgpu-types 0.5.0", ] @@ -697,7 +697,7 @@ version = "0.1.0" dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", - "wgpu-core 0.5.2", + "wgpu-core 0.5.3", "wgpu-types 0.5.0", ] diff --git a/wgpu-core/Cargo.toml b/wgpu-core/Cargo.toml index 4d7216286..b4c2e2271 100644 --- a/wgpu-core/Cargo.toml +++ b/wgpu-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wgpu-core" -version = "0.5.2" +version = "0.5.3" authors = [ "Dzmitry Malyshau ", "Joshua Groves ",