diff --git a/CHANGELOG.md b/CHANGELOG.md index e9cba576e..f6a971108 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Change Log +## v0.7.2 (2022-11-30) + - Fix build failure in rust 1.64 [#2966](https://github.com/gfx-rs/wgpu/pull/2966) + ## v0.7.1 (2021-02-25) - expose `wgc::device::queue` sub-module in public - fix the indexed buffer check diff --git a/Cargo.lock b/Cargo.lock index d1d845815..28fdcdb01 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,5 +1,7 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. +version = 3 + [[package]] name = "ab_glyph_rasterizer" version = "0.1.4" @@ -1799,7 +1801,7 @@ dependencies = [ [[package]] name = "wgpu-core" -version = "0.7.1" +version = "0.7.2" dependencies = [ "arrayvec", "bitflags", diff --git a/wgpu-core/Cargo.toml b/wgpu-core/Cargo.toml index d303a85f8..394332604 100644 --- a/wgpu-core/Cargo.toml +++ b/wgpu-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wgpu-core" -version = "0.7.1" +version = "0.7.2" authors = ["wgpu developers"] edition = "2018" description = "WebGPU core logic on gfx-hal"