Skip to content

Commit 17a1249

Browse files
committed
Version update to 0.6.0
1 parent 28b675d commit 17a1249

File tree

4 files changed

+17
-16
lines changed

4 files changed

+17
-16
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2727
2828
-->
2929

30-
## [Unreleased]
30+
## [0.6.0]
3131

3232
### Added ⭐
3333
- [PR#998](https://github.com/EmbarkStudios/rust-gpu/pull/998) added `extra_arg()` SpirvBuilder API to be able to set codegen args otherwise not supported by the API (for example, to set `--spirv-passes`).

Cargo.lock

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

Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,19 +24,19 @@ members = [
2424
]
2525

2626
[workspace.package]
27-
version = "0.5.0"
27+
version = "0.6.0"
2828
authors = ["Embark <[email protected]>"]
2929
edition = "2021"
3030
license = "MIT OR Apache-2.0"
3131
repository = "https://github.com/EmbarkStudios/rust-gpu"
3232

3333
[workspace.dependencies]
34-
spirv-std = { path = "./crates/spirv-std", version = "=0.5.0" }
35-
spirv-std-types = { path = "./crates/spirv-std/shared", version = "=0.5.0" }
36-
spirv-std-macros = { path = "./crates/spirv-std/macros", version = "=0.5.0" }
37-
spirv-builder = { path = "./crates/spirv-builder", version = "=0.5.0", default-features = false }
38-
rustc_codegen_spirv = { path = "./crates/rustc_codegen_spirv", version = "=0.5.0", default-features = false }
39-
rustc_codegen_spirv-types = { path = "./crates/rustc_codegen_spirv-types", version = "=0.5.0" }
34+
spirv-std = { path = "./crates/spirv-std", version = "=0.6.0" }
35+
spirv-std-types = { path = "./crates/spirv-std/shared", version = "=0.6.0" }
36+
spirv-std-macros = { path = "./crates/spirv-std/macros", version = "=0.6.0" }
37+
spirv-builder = { path = "./crates/spirv-builder", version = "=0.6.0", default-features = false }
38+
rustc_codegen_spirv = { path = "./crates/rustc_codegen_spirv", version = "=0.6.0", default-features = false }
39+
rustc_codegen_spirv-types = { path = "./crates/rustc_codegen_spirv-types", version = "=0.6.0" }
4040

4141
# Enable incremental by default in release mode.
4242
[profile.release]

crates/spirv-builder/README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<!-- markdownlint-disable-file MD033 -->
33
# `spirv-builder`
44

5-
![Rust version](https://img.shields.io/badge/rust-nightly--2022--12--18-purple.svg)
5+
![Rust version](https://img.shields.io/badge/rust-nightly--2023--01--21-purple.svg)
66

77
This crate gives you `SpirvBuilder`, a tool to build shaders using [rust-gpu][rustgpu].
88

@@ -31,12 +31,13 @@ const SHADER: &[u8] = include_bytes!(env!("my_shaders.spv"));
3131

3232
Because of its nature, `rustc_codegen_spirv`, and therefore `spirv-builder` by extension, require the use of a very specific nightly toolchain of Rust.
3333

34-
**The current toolchain is: `nightly-2022-10-29`.**
34+
**The current toolchain is: `nightly-2023-01-21`.**
3535

3636
Toolchains for previous versions of `spirv-builder`:
3737

3838
|Version|Toolchain|
3939
|-:|-|
40+
|`0.6.0`|`nightly-2023-01-21`|
4041
|`0.5.0`|`nightly-2022-12-18`|
4142
|`0.4.0`|`nightly-2022-10-29`|
4243
|`0.4.0-alpha.16` - `0.4.0-alpha.17`|`nightly-2022-10-01`|

0 commit comments

Comments
 (0)