Skip to content

Commit 03f1b53

Browse files
committed
Bump version to v26
1 parent 8ee66bd commit 03f1b53

File tree

7 files changed

+39
-39
lines changed

7 files changed

+39
-39
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -59,12 +59,12 @@ keywords = ["graphics"]
5959
license = "MIT OR Apache-2.0"
6060
homepage = "https://wgpu.rs/"
6161
repository = "https://github.com/gfx-rs/wgpu"
62-
version = "25.0.0"
62+
version = "26.0.0"
6363
authors = ["gfx-rs developers"]
6464

6565
[workspace.dependencies]
66-
naga = { version = "25.0.0", path = "./naga" }
67-
wgpu = { version = "25.0.0", path = "./wgpu", default-features = false, features = [
66+
naga = { version = "26.0.0", path = "./naga" }
67+
wgpu = { version = "26.0.0", path = "./wgpu", default-features = false, features = [
6868
"serde",
6969
"wgsl",
7070
"vulkan",
@@ -74,21 +74,21 @@ wgpu = { version = "25.0.0", path = "./wgpu", default-features = false, features
7474
"static-dxc",
7575
"noop", # This should be removed if we ever have non-test crates that depend on wgpu
7676
] }
77-
wgpu-core = { version = "25.0.0", path = "./wgpu-core" }
78-
wgpu-hal = { version = "25.0.0", path = "./wgpu-hal" }
79-
wgpu-macros = { version = "25.0.0", path = "./wgpu-macros" }
80-
wgpu-test = { version = "25.0.0", path = "./tests" }
81-
wgpu-types = { version = "25.0.0", path = "./wgpu-types", default-features = false }
77+
wgpu-core = { version = "26.0.0", path = "./wgpu-core" }
78+
wgpu-hal = { version = "26.0.0", path = "./wgpu-hal" }
79+
wgpu-macros = { version = "26.0.0", path = "./wgpu-macros" }
80+
wgpu-test = { version = "26.0.0", path = "./tests" }
81+
wgpu-types = { version = "26.0.0", path = "./wgpu-types", default-features = false }
8282

8383
# These _cannot_ have a version specified. If it does, crates.io will look
8484
# for a version of the package on crates when we publish naga. Path dependencies
8585
# are allowed through though.
8686
hlsl-snapshots = { path = "naga/hlsl-snapshots" }
8787

88-
wgpu-core-deps-windows-linux-android = { version = "25.0.0", path = "./wgpu-core/platform-deps/windows-linux-android" }
89-
wgpu-core-deps-apple = { version = "25.0.0", path = "./wgpu-core/platform-deps/apple" }
90-
wgpu-core-deps-wasm = { version = "25.0.0", path = "./wgpu-core/platform-deps/wasm" }
91-
wgpu-core-deps-emscripten = { version = "25.0.0", path = "./wgpu-core/platform-deps/emscripten" }
88+
wgpu-core-deps-windows-linux-android = { version = "26.0.0", path = "./wgpu-core/platform-deps/windows-linux-android" }
89+
wgpu-core-deps-apple = { version = "26.0.0", path = "./wgpu-core/platform-deps/apple" }
90+
wgpu-core-deps-wasm = { version = "26.0.0", path = "./wgpu-core/platform-deps/wasm" }
91+
wgpu-core-deps-emscripten = { version = "26.0.0", path = "./wgpu-core/platform-deps/emscripten" }
9292

9393
anyhow = { version = "1.0.87", default-features = false }
9494
approx = "0.5"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ The API is based on the [WebGPU standard][webgpu]. It serves as the core of the
1717

1818
| Docs | Examples | Changelog |
1919
|:---------------------:|:-------------------------:|:-----------------------:|
20-
| [v25][rel-docs] | [v25][rel-examples] | [v25][rel-change] |
20+
| [v26][rel-docs] | [v26][rel-examples] | [v26][rel-change] |
2121
| [`trunk`][trunk-docs] | [`trunk`][trunk-examples] | [`trunk`][trunk-change] |
2222

2323
Contributors are welcome! See [CONTRIBUTING.md][contrib] for more information.
2424

2525
[rel-docs]: https://docs.rs/wgpu/
26-
[rel-examples]: https://github.com/gfx-rs/wgpu/tree/v25/examples#readme
26+
[rel-examples]: https://github.com/gfx-rs/wgpu/tree/v26/examples#readme
2727
[rel-change]: https://github.com/gfx-rs/wgpu/releases
2828
[trunk-docs]: https://wgpu.rs/doc/wgpu/
2929
[trunk-examples]: https://github.com/gfx-rs/wgpu/tree/trunk/examples#readme

examples/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
> [!NOTE]
22
> These are the examples for the development version of wgpu. If you want to see the examples for the latest crates.io release
3-
> of wgpu, go to the [latest release branch](https://github.com/gfx-rs/wgpu/tree/v25/examples#readme).
3+
> of wgpu, go to the [latest release branch](https://github.com/gfx-rs/wgpu/tree/v26/examples#readme).
44
55
# Examples
66

@@ -23,7 +23,7 @@ be cloned out of the repository to serve as a starting point for your own projec
2323
You can also use [`cargo-generate`](https://github.com/cargo-generate/cargo-generate) to easily use these as a basis for your own projects.
2424

2525
```sh
26-
cargo generate gfx-rs/wgpu --branch v25
26+
cargo generate gfx-rs/wgpu --branch v26
2727
```
2828

2929
## Framework Examples

examples/standalone/01_hello_compute/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ publish = false
88
bytemuck = "1.22.0"
99
env_logger = "0.11"
1010
pollster = "0.4"
11-
wgpu = "25.0.0"
11+
wgpu = "26.0.0"

examples/standalone/02_hello_window/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ publish = false
77
[dependencies]
88
env_logger = "0.11"
99
pollster = "0.4"
10-
wgpu = "25.0.0"
10+
wgpu = "26.0.0"
1111
winit = { version = "0.30.8", features = ["android-native-activity"] }

examples/standalone/custom_backend/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ default = ["web"]
99
web = ["wgpu/web"]
1010

1111
[dependencies]
12-
wgpu = { version = "25.0.0", features = [
12+
wgpu = { version = "26.0.0", features = [
1313
"custom",
1414
"wgsl",
1515
], default-features = false }

0 commit comments

Comments
 (0)