From 2754af42e841cf4330079a5ca3070dc846001e10 Mon Sep 17 00:00:00 2001 From: Connor Fitzgerald Date: Wed, 30 Nov 2022 17:05:17 -0500 Subject: [PATCH] Update changelog --- CHANGELOG.md | 6 ++++++ Cargo.lock | 2 +- wgpu-core/Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d290346b4a..73935eb0a7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Change Log +## v0.8.2 (2022-11-30) + - Fix build failure in rust 1.64 [#2967](https://github.com/gfx-rs/wgpu/pull/2967) + ## wgpu-types-0.8.1 (2021-06-08) - fix dynamic stencil reference for Replace ops @@ -46,6 +49,9 @@ - interpolation qualifiers - allow vertex components to be underspecified +## 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 b324a2fc8b..3a7d76d878 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1639,7 +1639,7 @@ dependencies = [ [[package]] name = "wgpu-core" -version = "0.8.1" +version = "0.8.2" dependencies = [ "arrayvec", "bitflags", diff --git a/wgpu-core/Cargo.toml b/wgpu-core/Cargo.toml index 9f6e7ead8f..8c59aab9a6 100644 --- a/wgpu-core/Cargo.toml +++ b/wgpu-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wgpu-core" -version = "0.8.1" +version = "0.8.2" authors = ["wgpu developers"] edition = "2018" description = "WebGPU core logic on gfx-hal"