Skip to content

Commit 812727d

Browse files
committed
Changelog and versions
1 parent c8b8876 commit 812727d

File tree

6 files changed

+24
-18
lines changed

6 files changed

+24
-18
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,16 @@ Bottom level categories:
3737
- Hal
3838
-->
3939

40-
## Unreleased -- v0.20.1 (2024-04-??)
40+
## Unreleased
41+
42+
## v0.20.1 (2024-06-12)
43+
44+
This release included v0.21.0 of `wgpu-core` and `wgpu-hal`, due to breaking changes needed to solve vulkan validation issues.
4145

4246
### Bug Fixes
4347

48+
This release fixes the validation errors whenever a surface is used with the vulkan backend. By @cwfitzgerald in [#5681](https://github.com/gfx-rs/wgpu/pull/5681).
49+
4450
#### General
4551

4652
- Clean up weak references to texture views and bind groups to prevent memory leaks. By @xiaopengli89 in [#5595](https://github.com/gfx-rs/wgpu/pull/5595).

Cargo.lock

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,13 @@ keywords = ["graphics"]
4545
license = "MIT OR Apache-2.0"
4646
homepage = "https://wgpu.rs/"
4747
repository = "https://github.com/gfx-rs/wgpu"
48-
version = "0.20.0"
48+
version = "0.20.1"
4949
authors = ["gfx-rs developers"]
5050

5151
[workspace.dependencies.wgc]
5252
package = "wgpu-core"
5353
path = "./wgpu-core"
54-
version = "0.20.0"
54+
version = "0.21.0"
5555

5656
[workspace.dependencies.wgt]
5757
package = "wgpu-types"
@@ -61,7 +61,7 @@ version = "0.20.0"
6161
[workspace.dependencies.hal]
6262
package = "wgpu-hal"
6363
path = "./wgpu-hal"
64-
version = "0.20.0"
64+
version = "0.21.0"
6565

6666
[workspace.dependencies.naga]
6767
path = "./naga"
@@ -119,7 +119,7 @@ smallvec = "1"
119119
static_assertions = "1.1.0"
120120
thiserror = "1"
121121
wgpu = { version = "0.20.0", path = "./wgpu" }
122-
wgpu-core = { version = "0.20.0", path = "./wgpu-core" }
122+
wgpu-core = { version = "0.21.0", path = "./wgpu-core" }
123123
wgpu-example = { version = "0.20.0", path = "./examples/common" }
124124
wgpu-macros = { version = "0.20.0", path = "./wgpu-macros" }
125125
wgpu-test = { version = "0.20.0", path = "./tests" }

deno_webgpu/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ workspace = true
4545
features = ["dx12"]
4646

4747
[target.'cfg(windows)'.dependencies.wgpu-hal]
48-
version = "0.20.0"
48+
version = "0.21.0"
4949
path = "../wgpu-hal"
5050
features = ["windows_rs"]
5151

wgpu-core/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wgpu-core"
3-
version = "0.20.0"
3+
version = "0.21.0"
44
authors = ["gfx-rs developers"]
55
edition = "2021"
66
description = "WebGPU core logic on wgpu-hal"
@@ -127,7 +127,7 @@ version = "0.20.0"
127127
[dependencies.hal]
128128
package = "wgpu-hal"
129129
path = "../wgpu-hal"
130-
version = "0.20.0"
130+
version = "0.21.0"
131131
default_features = false
132132

133133
[target.'cfg(all(target_arch = "wasm32", not(target_os = "emscripten")))'.dependencies]

wgpu-hal/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wgpu-hal"
3-
version = "0.20.0"
3+
version = "0.21.0"
44
authors = ["gfx-rs developers"]
55
edition = "2021"
66
description = "WebGPU hardware abstraction layer"

0 commit comments

Comments
 (0)