mirror of
https://github.com/EmbarkStudios/rust-gpu.git
synced 2024-11-25 00:04:11 +00:00
Changed current version to 0.5.0
This commit is contained in:
parent
2a77f6ee86
commit
547309a73c
@ -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)
|
||||
|
12
Cargo.lock
generated
12
Cargo.lock
generated
@ -2008,7 +2008,7 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
||||
|
||||
[[package]]
|
||||
name = "rustc_codegen_spirv"
|
||||
version = "0.4.0"
|
||||
version = "0.5.0"
|
||||
dependencies = [
|
||||
"ar",
|
||||
"either",
|
||||
@ -2036,7 +2036,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "rustc_codegen_spirv-types"
|
||||
version = "0.4.0"
|
||||
version = "0.5.0"
|
||||
dependencies = [
|
||||
"rspirv",
|
||||
"serde",
|
||||
@ -2265,7 +2265,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "spirv-builder"
|
||||
version = "0.4.0"
|
||||
version = "0.5.0"
|
||||
dependencies = [
|
||||
"memchr",
|
||||
"notify",
|
||||
@ -2278,7 +2278,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "spirv-std"
|
||||
version = "0.4.0"
|
||||
version = "0.5.0"
|
||||
dependencies = [
|
||||
"bitflags",
|
||||
"glam",
|
||||
@ -2289,7 +2289,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "spirv-std-macros"
|
||||
version = "0.4.0"
|
||||
version = "0.5.0"
|
||||
dependencies = [
|
||||
"proc-macro2",
|
||||
"quote",
|
||||
@ -2299,7 +2299,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "spirv-std-types"
|
||||
version = "0.4.0"
|
||||
version = "0.5.0"
|
||||
|
||||
[[package]]
|
||||
name = "spirv-tools"
|
||||
|
14
Cargo.toml
14
Cargo.toml
@ -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]
|
||||
|
@ -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].
|
||||
|
||||
@ -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`|
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user