Skip to content
This repository was archived by the owner on Oct 31, 2025. It is now read-only.

Commit 547309a

Browse files
committed
Changed current version to 0.5.0
1 parent 2a77f6e commit 547309a

File tree

5 files changed

+17
-16
lines changed

5 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.5.0]
3131

3232
### Added ⭐
3333
- [PR#988](https://github.com/EmbarkStudios/rust-gpu/pull/988) added a couple of (highly experimental)

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.4.0"
27+
version = "0.5.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.4.0" }
35-
spirv-std-types = { path = "./crates/spirv-std/shared", version = "=0.4.0" }
36-
spirv-std-macros = { path = "./crates/spirv-std/macros", version = "=0.4.0" }
37-
spirv-builder = { path = "./crates/spirv-builder", version = "=0.4.0", default-features = false }
38-
rustc_codegen_spirv = { path = "./crates/rustc_codegen_spirv", version = "=0.4.0", default-features = false }
39-
rustc_codegen_spirv-types = { path = "./crates/rustc_codegen_spirv-types", version = "=0.4.0" }
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" }
4040

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

crates/spirv-builder/README.md

Lines changed: 2 additions & 1 deletion
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--10--29-purple.svg)
5+
![Rust version](https://img.shields.io/badge/rust-nightly--2022--12--18-purple.svg)
66

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

@@ -37,6 +37,7 @@ Toolchains for previous versions of `spirv-builder`:
3737

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

docs/src/publishing-rust-gpu.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ The published crates and their relative locations are:
1212
6. `spirv-builder` (`crates/spirv-builder`)
1313

1414
Publishing the crates in above order prevents dependency issues.
15-
These are the steps:
15+
These are the steps:
1616

1717
1. Bump all the versions to the next one in the workspace's `Cargo.toml`. This project uses workspace
1818
inheritance, so this is the only place you'll find these actual versions. Make sure to pin the

0 commit comments

Comments
 (0)