diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c9a4951d..99d97564f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## v0.5.5 (2020-05-20) + - fix destruction of adapters, swap chains, and bind group layouts + - fix command pool leak with temporary threads + - improve assertion messages + - implement `From` for `TextureComponentType` + ## v0.5.4 (2020-04-24) - fix memory management of staging buffers diff --git a/Cargo.lock b/Cargo.lock index 8a460380f..678d2fbe0 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.4" +version = "0.5.5" 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)", @@ -674,7 +674,7 @@ dependencies = [ "serde 1.0.105 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", - "wgpu-types 0.5.0", + "wgpu-types 0.5.1", ] [[package]] @@ -687,8 +687,8 @@ 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.4", - "wgpu-types 0.5.0", + "wgpu-core 0.5.5", + "wgpu-types 0.5.1", ] [[package]] @@ -697,13 +697,13 @@ 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.4", - "wgpu-types 0.5.0", + "wgpu-core 0.5.5", + "wgpu-types 0.5.1", ] [[package]] name = "wgpu-types" -version = "0.5.0" +version = "0.5.1" dependencies = [ "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "peek-poke 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/wgpu-core/Cargo.toml b/wgpu-core/Cargo.toml index 9eb35ed9a..95d5d3275 100644 --- a/wgpu-core/Cargo.toml +++ b/wgpu-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wgpu-core" -version = "0.5.4" +version = "0.5.5" authors = [ "Dzmitry Malyshau ", "Joshua Groves ", diff --git a/wgpu-types/Cargo.toml b/wgpu-types/Cargo.toml index 616e7e5e0..5fb075418 100644 --- a/wgpu-types/Cargo.toml +++ b/wgpu-types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wgpu-types" -version = "0.5.0" +version = "0.5.1" authors = [ "Dzmitry Malyshau ", "Joshua Groves ",