diff --git a/CHANGELOG.md b/CHANGELOG.md index 6cf53a68b..037f161c2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,8 @@ # Change Log + +## v0.9.3 (2022-11-30) + - Fix build failure in rust 1.64 [#2968](https://github.com/gfx-rs/wgpu/pull/2968) + ## wgpu-core-0.9.2 - fix `Features::TEXTURE_SPECIFIC_FORMAT_FEATURES` not being supported for rendertargets @@ -45,6 +49,9 @@ - Add missing extern "C" in wgpu-core on `wgpu_render_pass_execute_bundles` - Fix incorrect function name `wgpu_render_pass_bundle_indexed_indirect` to `wgpu_render_bundle_draw_indexed_indirect`. +## 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 @@ -91,6 +98,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) + ## wgpu-core-0.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 aaff980bd..4e65f6f19 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2222,7 +2222,7 @@ dependencies = [ [[package]] name = "wgpu-core" -version = "0.9.2" +version = "0.9.3" dependencies = [ "arrayvec", "bitflags", @@ -2253,7 +2253,7 @@ dependencies = [ [[package]] name = "wgpu-types" -version = "0.9.0" +version = "0.9.3" dependencies = [ "bitflags", "serde", diff --git a/wgpu-core/Cargo.toml b/wgpu-core/Cargo.toml index c252be4fa..b9e025855 100644 --- a/wgpu-core/Cargo.toml +++ b/wgpu-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wgpu-core" -version = "0.9.2" +version = "0.9.3" authors = ["wgpu developers"] edition = "2018" description = "WebGPU core logic on gfx-hal" @@ -65,7 +65,7 @@ features = ["spv-in", "spv-out", "wgsl-in"] [dependencies.wgt] path = "../wgpu-types" package = "wgpu-types" -version = "0.9" +version = "0.9.3" [dev-dependencies] loom = "0.3" diff --git a/wgpu-types/Cargo.toml b/wgpu-types/Cargo.toml index e5610b607..6701295d5 100644 --- a/wgpu-types/Cargo.toml +++ b/wgpu-types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wgpu-types" -version = "0.9.0" +version = "0.9.3" authors = ["wgpu developers"] edition = "2018" description = "WebGPU types"