From 547309a73c8e2e712961487be29637dabf3390b5 Mon Sep 17 00:00:00 2001 From: Sylvester Hesp Date: Thu, 2 Feb 2023 13:52:41 +0100 Subject: [PATCH] Changed current version to 0.5.0 --- CHANGELOG.md | 2 +- Cargo.lock | 12 ++++++------ Cargo.toml | 14 +++++++------- crates/spirv-builder/README.md | 3 ++- docs/src/publishing-rust-gpu.md | 2 +- 5 files changed, 17 insertions(+), 16 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8c4445deca..5f7af73518 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/Cargo.lock b/Cargo.lock index 17a39c22ed..b751e67746 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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" diff --git a/Cargo.toml b/Cargo.toml index 501068d7ba..8550bcacb3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,19 +24,19 @@ members = [ ] [workspace.package] -version = "0.4.0" +version = "0.5.0" authors = ["Embark "] 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] diff --git a/crates/spirv-builder/README.md b/crates/spirv-builder/README.md index cc51fce32d..5756bc9a81 100644 --- a/crates/spirv-builder/README.md +++ b/crates/spirv-builder/README.md @@ -2,7 +2,7 @@ # `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`| diff --git a/docs/src/publishing-rust-gpu.md b/docs/src/publishing-rust-gpu.md index 7f7c367191..e5c49b3673 100644 --- a/docs/src/publishing-rust-gpu.md +++ b/docs/src/publishing-rust-gpu.md @@ -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