Skip to content

Commit

Permalink
Changed current version to 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
oisyn committed Feb 3, 2023
1 parent 2a77f6e commit 547309a
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 16 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
-->

## [Unreleased]
## [0.5.0]

### Added ⭐
- [PR#988](https://github.com/EmbarkStudios/rust-gpu/pull/988) added a couple of (highly experimental)
Expand Down
12 changes: 6 additions & 6 deletions Cargo.lock

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

14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,19 +24,19 @@ members = [
]

[workspace.package]
version = "0.4.0"
version = "0.5.0"
authors = ["Embark <opensource@embark-studios.com>"]
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/EmbarkStudios/rust-gpu"

[workspace.dependencies]
spirv-std = { path = "./crates/spirv-std", version = "=0.4.0" }
spirv-std-types = { path = "./crates/spirv-std/shared", version = "=0.4.0" }
spirv-std-macros = { path = "./crates/spirv-std/macros", version = "=0.4.0" }
spirv-builder = { path = "./crates/spirv-builder", version = "=0.4.0", default-features = false }
rustc_codegen_spirv = { path = "./crates/rustc_codegen_spirv", version = "=0.4.0", default-features = false }
rustc_codegen_spirv-types = { path = "./crates/rustc_codegen_spirv-types", version = "=0.4.0" }
spirv-std = { path = "./crates/spirv-std", version = "=0.5.0" }
spirv-std-types = { path = "./crates/spirv-std/shared", version = "=0.5.0" }
spirv-std-macros = { path = "./crates/spirv-std/macros", version = "=0.5.0" }
spirv-builder = { path = "./crates/spirv-builder", version = "=0.5.0", default-features = false }
rustc_codegen_spirv = { path = "./crates/rustc_codegen_spirv", version = "=0.5.0", default-features = false }
rustc_codegen_spirv-types = { path = "./crates/rustc_codegen_spirv-types", version = "=0.5.0" }

# Enable incremental by default in release mode.
[profile.release]
Expand Down
3 changes: 2 additions & 1 deletion crates/spirv-builder/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<!-- markdownlint-disable-file MD033 -->
# `spirv-builder`

![Rust version](https://img.shields.io/badge/rust-nightly--2022--10--29-purple.svg)
![Rust version](https://img.shields.io/badge/rust-nightly--2022--12--18-purple.svg)

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

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

|Version|Toolchain|
|-:|-|
|`0.5.0`|`nightly-2022-12-18`|
|`0.4.0`|`nightly-2022-10-29`|
|`0.4.0-alpha.16` - `0.4.0-alpha.17`|`nightly-2022-10-01`|
|`0.4.0-alpha.15`|`nightly-2022-08-29`|
Expand Down
2 changes: 1 addition & 1 deletion docs/src/publishing-rust-gpu.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ The published crates and their relative locations are:
6. `spirv-builder` (`crates/spirv-builder`)

Publishing the crates in above order prevents dependency issues.
These are the steps:
These are the steps:

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

0 comments on commit 547309a

Please sign in to comment.