From b73887f17e4abb7e03958a74d8ad2df83d7455eb Mon Sep 17 00:00:00 2001 From: Dzmitry Malyshau Date: Thu, 29 Apr 2021 12:11:10 -0400 Subject: [PATCH] [rs] Version bump to 0.8 --- wgpu/CHANGELOG.md | 6 ++++++ wgpu/Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/wgpu/CHANGELOG.md b/wgpu/CHANGELOG.md index 89060ad991..dcfb7660c9 100644 --- a/wgpu/CHANGELOG.md +++ b/wgpu/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +### v0.8 (2021-04-29) +- See https://github.com/gfx-rs/wgpu/blob/v0.8/CHANGELOG.md#v08-2021-04-29 +- Naga is the default shader conversion path on Metal, Vulkan, and OpenGL +- SPIRV-Cross is optionally enabled with "cross" feature +- All of the examples (except "texture-array") now use WGSL + ### v0.7 (2021-01-31) - See https://github.com/gfx-rs/wgpu/blob/v0.7/CHANGELOG.md#v07-2020-08-30 - Features: diff --git a/wgpu/Cargo.toml b/wgpu/Cargo.toml index 5ce58fdcb2..826b35a777 100644 --- a/wgpu/Cargo.toml +++ b/wgpu/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wgpu" -version = "0.7.0" +version = "0.8.0" authors = ["wgpu developers"] edition = "2018" description = "Rusty WebGPU API wrapper"