Skip to content

Commit

Permalink
chore: bump WGPU workspace crates to 23
Browse files Browse the repository at this point in the history
  • Loading branch information
ErichDonGubler committed Oct 26, 2024
1 parent 3b74787 commit 194b6cc
Show file tree
Hide file tree
Showing 9 changed files with 38 additions and 36 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ Bottom level categories:

## Unreleased

## 23.0.0 (2024-10-25)

### Themes of this release

This release's theme is one that is likely to repeat for a few releases: convergence with the WebGPU specification! WGPU's design and base functionality are actually determined by two specifications: one for WebGPU, and one for the WebGPU Shading Language.
Expand Down
26 changes: 13 additions & 13 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 10 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,27 +47,27 @@ keywords = ["graphics"]
license = "MIT OR Apache-2.0"
homepage = "https://wgpu.rs/"
repository = "https://github.com/gfx-rs/wgpu"
version = "22.0.0"
version = "23.0.0"
authors = ["gfx-rs developers"]

[workspace.dependencies.wgc]
package = "wgpu-core"
path = "./wgpu-core"
version = "22.0.0"
version = "23.0.0"

[workspace.dependencies.wgt]
package = "wgpu-types"
path = "./wgpu-types"
version = "22.0.0"
version = "23.0.0"

[workspace.dependencies.hal]
package = "wgpu-hal"
path = "./wgpu-hal"
version = "22.0.0"
version = "23.0.0"

[workspace.dependencies.naga]
path = "./naga"
version = "22.0.0"
version = "23.0.0"

[workspace.dependencies]
anyhow = "1.0.90"
Expand Down Expand Up @@ -126,11 +126,11 @@ static_assertions = "1.1.0"
strum = { version = "0.25.0", features = ["derive"] }
tracy-client = "0.17"
thiserror = "1.0.64"
wgpu = { version = "22.0.0", path = "./wgpu", default-features = false }
wgpu-core = { version = "22.0.0", path = "./wgpu-core" }
wgpu-macros = { version = "22.0.0", path = "./wgpu-macros" }
wgpu-test = { version = "22.0.0", path = "./tests" }
wgpu-types = { version = "22.0.0", path = "./wgpu-types" }
wgpu = { version = "23.0.0", path = "./wgpu", default-features = false }
wgpu-core = { version = "23.0.0", path = "./wgpu-core" }
wgpu-macros = { version = "23.0.0", path = "./wgpu-macros" }
wgpu-test = { version = "23.0.0", path = "./tests" }
wgpu-types = { version = "23.0.0", path = "./wgpu-types" }
winit = { version = "0.29", features = ["android-native-activity"] }

# Metal dependencies
Expand Down
4 changes: 2 additions & 2 deletions naga-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "naga-cli"
version = "22.0.0"
version = "23.0.0"
authors = ["gfx-rs developers"]
edition = "2021"
description = "Shader translation command line tool"
Expand All @@ -25,7 +25,7 @@ argh.workspace = true
anyhow.workspace = true

[dependencies.naga]
version = "22.0.0"
version = "23.0.0"
path = "../naga"
features = [
"compact",
Expand Down
2 changes: 1 addition & 1 deletion naga/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "naga"
version = "22.0.0"
version = "23.0.0"
authors = ["gfx-rs developers"]
edition = "2021"
description = "Shader translation infrastructure"
Expand Down
2 changes: 1 addition & 1 deletion naga/fuzz/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ libfuzzer-sys = "0.4"

[target.'cfg(not(any(target_arch = "wasm32", target_os = "ios")))'.dependencies.naga]
path = ".."
version = "22.0.0"
version = "23.0.0"
features = ["arbitrary", "spv-in", "wgsl-in", "glsl-in"]

[[bin]]
Expand Down
8 changes: 4 additions & 4 deletions wgpu-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wgpu-core"
version = "22.0.0"
version = "23.0.0"
authors = ["gfx-rs developers"]
edition = "2021"
description = "WebGPU core logic on wgpu-hal"
Expand Down Expand Up @@ -129,17 +129,17 @@ thiserror.workspace = true

[dependencies.naga]
path = "../naga"
version = "22.0.0"
version = "23.0.0"

[dependencies.wgt]
package = "wgpu-types"
path = "../wgpu-types"
version = "22.0.0"
version = "23.0.0"

[dependencies.hal]
package = "wgpu-hal"
path = "../wgpu-hal"
version = "22.0.0"
version = "23.0.0"
default-features = false

[build-dependencies]
Expand Down
8 changes: 4 additions & 4 deletions wgpu-hal/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wgpu-hal"
version = "22.0.0"
version = "23.0.0"
authors = ["gfx-rs developers"]
edition = "2021"
description = "WebGPU hardware abstraction layer"
Expand Down Expand Up @@ -133,7 +133,7 @@ glow = { workspace = true, optional = true }
[dependencies.wgt]
package = "wgpu-types"
path = "../wgpu-types"
version = "22.0.0"
version = "23.0.0"

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
# backend: Vulkan
Expand Down Expand Up @@ -191,15 +191,15 @@ ndk-sys = { workspace = true, optional = true }

[dependencies.naga]
path = "../naga"
version = "22.0.0"
version = "23.0.0"

[build-dependencies]
cfg_aliases.workspace = true

# DEV dependencies
[dev-dependencies.naga]
path = "../naga"
version = "22.0.0"
version = "23.0.0"
features = ["wgsl-in"]

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion wgpu-types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wgpu-types"
version = "22.0.0"
version = "23.0.0"
authors = ["gfx-rs developers"]
edition = "2021"
description = "WebGPU types"
Expand Down

0 comments on commit 194b6cc

Please sign in to comment.