From 3cd7376abe1ca03cd8e1a8ca06ed8b13c53cf3e9 Mon Sep 17 00:00:00 2001 From: Dzmitry Malyshau Date: Wed, 15 Apr 2020 18:59:18 -0400 Subject: [PATCH] Version bump to 0.5.2 and CHANGELOG update --- CHANGELOG.md | 5 +++++ Cargo.lock | 6 +++--- wgpu-core/Cargo.toml | 2 +- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 00d5d5c8be..9546c72fdf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Change Log +## v0.5.2 (15-04-2020) + - fix read-only storage flags + - fix pipeline layout life time + - improve various assert messages + ## v0.5.1 (10-04-2020) - fix tracking of swapchain images that are used multiple times in a command buffer - fix tracking of initial usage of a resource across a command buffer diff --git a/Cargo.lock b/Cargo.lock index 7e76dac1a9..3dbdc9ece6 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.1" +version = "0.5.2" 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.1", + "wgpu-core 0.5.2", "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.1", + "wgpu-core 0.5.2", "wgpu-types 0.5.0", ] diff --git a/wgpu-core/Cargo.toml b/wgpu-core/Cargo.toml index 839d752f32..4d72162865 100644 --- a/wgpu-core/Cargo.toml +++ b/wgpu-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wgpu-core" -version = "0.5.1" +version = "0.5.2" authors = [ "Dzmitry Malyshau ", "Joshua Groves ",