From dc888446a327777bd7f1d7b72853751dc8bcf591 Mon Sep 17 00:00:00 2001 From: Dzmitry Malyshau Date: Fri, 24 Apr 2020 22:25:39 -0400 Subject: [PATCH] Version bump tp 0.5.4 --- 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 4743531b16..31ac81a7ef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Change Log +## v0.5.4 (24-04-2020) + - fix memory management of staging buffers + ## v0.5.3 (18-04-2020) - fix reading access to storage textures - another fix to layout transitions for swapchain images @@ -21,6 +24,7 @@ - based on gfx-hal-0.5 - moved from Rendy to the new `gfx-memory` and `gfx-descriptor` crates - passes are now recorded on the client side. The user is also responsible to keep all resources referenced in the pass up until it ends recording. + - coordinate system is changed to have Y up in the rendering space - revised GPU lifetime tracking of all resources - revised usage tracking logic - all IDs are now non-zero diff --git a/Cargo.lock b/Cargo.lock index 342a000dfe..8a460380f7 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.3" +version = "0.5.4" 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.3", + "wgpu-core 0.5.4", "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.3", + "wgpu-core 0.5.4", "wgpu-types 0.5.0", ] diff --git a/wgpu-core/Cargo.toml b/wgpu-core/Cargo.toml index b4c2e22719..ec298d0f76 100644 --- a/wgpu-core/Cargo.toml +++ b/wgpu-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wgpu-core" -version = "0.5.3" +version = "0.5.4" authors = [ "Dzmitry Malyshau ", "Joshua Groves ",