Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 1755db7

Browse files
committedNov 24, 2024·
bump wgpu, wgpu-core, wgpu-hal to 23.0.1
1 parent 1f49837 commit 1755db7

File tree

5 files changed

+21
-19
lines changed

5 files changed

+21
-19
lines changed
 

‎CHANGELOG.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,12 @@ Bottom level categories:
4040

4141
## Unreleased
4242

43-
## 23.1.0 (2024-11-??)
43+
## 23.0.1 (2024-11-24)
4444

45-
### Bug fixes
45+
This release includes `wgpu`, `wgpu-core` and `wgpu-hal`. All other crates remain at 23.0.0.
46+
Below changes were cherry-picked from 23.0.0.
4647

48+
### Bug fixes
4749

4850
#### General
4951

‎Cargo.lock

+10-10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -47,13 +47,13 @@ keywords = ["graphics"]
4747
license = "MIT OR Apache-2.0"
4848
homepage = "https://wgpu.rs/"
4949
repository = "https://github.com/gfx-rs/wgpu"
50-
version = "23.0.0"
50+
version = "23.0.1"
5151
authors = ["gfx-rs developers"]
5252

5353
[workspace.dependencies.wgc]
5454
package = "wgpu-core"
5555
path = "./wgpu-core"
56-
version = "23.0.0"
56+
version = "23.0.1"
5757

5858
[workspace.dependencies.wgt]
5959
package = "wgpu-types"
@@ -63,7 +63,7 @@ version = "23.0.0"
6363
[workspace.dependencies.hal]
6464
package = "wgpu-hal"
6565
path = "./wgpu-hal"
66-
version = "23.0.0"
66+
version = "23.0.1"
6767

6868
[workspace.dependencies.naga]
6969
path = "./naga"
@@ -126,8 +126,8 @@ static_assertions = "1.1.0"
126126
strum = { version = "0.25.0", features = ["derive"] }
127127
tracy-client = "0.17"
128128
thiserror = "1.0.65"
129-
wgpu = { version = "23.0.0", path = "./wgpu", default-features = false }
130-
wgpu-core = { version = "23.0.0", path = "./wgpu-core" }
129+
wgpu = { version = "23.0.1", path = "./wgpu", default-features = false }
130+
wgpu-core = { version = "23.0.1", path = "./wgpu-core" }
131131
wgpu-macros = { version = "23.0.0", path = "./wgpu-macros" }
132132
wgpu-test = { version = "23.0.0", path = "./tests" }
133133
wgpu-types = { version = "23.0.0", path = "./wgpu-types" }

‎wgpu-core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wgpu-core"
3-
version = "23.0.0"
3+
version = "23.0.1"
44
authors = ["gfx-rs developers"]
55
edition = "2021"
66
description = "WebGPU core logic on wgpu-hal"

‎wgpu-hal/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wgpu-hal"
3-
version = "23.0.0"
3+
version = "23.0.1"
44
authors = ["gfx-rs developers"]
55
edition = "2021"
66
description = "WebGPU hardware abstraction layer"

0 commit comments

Comments
 (0)
Please sign in to comment.