From 174733dd15773f8bd9364d7031e6990d74593104 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 6 Aug 2026 00:17:32 +0000 Subject: [PATCH 1/2] chore: release v0.10.0-alpha.2 --- CHANGELOG.md | 1 + Cargo.lock | 16 ++++++++-------- Cargo.toml | 16 ++++++++-------- 3 files changed, 17 insertions(+), 16 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8efa233ae95..acc957aa69b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +## [0.10.0-alpha.2](https://github.com/Rust-GPU/rust-gpu/compare/v0.10.0-alpha.1...v0.10.0-alpha.2) - 2026-08-06 ### Changed 🛠 diff --git a/Cargo.lock b/Cargo.lock index 9ba291e1fbb..b85b2edb1d0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -366,7 +366,7 @@ dependencies = [ [[package]] name = "cargo-gpu" -version = "0.10.0-alpha.1" +version = "0.10.0-alpha.2" dependencies = [ "anyhow", "cargo-gpu-install", @@ -384,7 +384,7 @@ dependencies = [ [[package]] name = "cargo-gpu-install" -version = "0.10.0-alpha.1" +version = "0.10.0-alpha.2" dependencies = [ "anyhow", "cargo-util-schemas", @@ -3189,7 +3189,7 @@ checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d" [[package]] name = "rustc_codegen_spirv" -version = "0.10.0-alpha.1" +version = "0.10.0-alpha.2" dependencies = [ "ahash", "ar", @@ -3224,7 +3224,7 @@ dependencies = [ [[package]] name = "rustc_codegen_spirv-types" -version = "0.10.0-alpha.1" +version = "0.10.0-alpha.2" dependencies = [ "rspirv", "semver", @@ -3638,7 +3638,7 @@ dependencies = [ [[package]] name = "spirv-builder" -version = "0.10.0-alpha.1" +version = "0.10.0-alpha.2" dependencies = [ "cargo_metadata", "clap", @@ -3656,7 +3656,7 @@ dependencies = [ [[package]] name = "spirv-std" -version = "0.10.0-alpha.1" +version = "0.10.0-alpha.2" dependencies = [ "bitflags 2.13.1", "bytemuck", @@ -3672,7 +3672,7 @@ dependencies = [ [[package]] name = "spirv-std-macros" -version = "0.10.0-alpha.1" +version = "0.10.0-alpha.2" dependencies = [ "proc-macro2", "quote", @@ -3682,7 +3682,7 @@ dependencies = [ [[package]] name = "spirv-std-types" -version = "0.10.0-alpha.1" +version = "0.10.0-alpha.2" [[package]] name = "spirv-tools" diff --git a/Cargo.toml b/Cargo.toml index 0fc2aa0198f..c553f3cdc94 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -44,7 +44,7 @@ exclude = [ ] [workspace.package] -version = "0.10.0-alpha.1" +version = "0.10.0-alpha.2" authors = ["rust-gpu developers", "Embark "] edition = "2024" license = "MIT OR Apache-2.0" @@ -55,14 +55,14 @@ keywords = ["gpu", "compiler", "rust-gpu"] unexpected_cfgs = { level = "allow", check-cfg = ['cfg(target_arch, values("spirv"))'] } [workspace.dependencies] -spirv-builder = { path = "./crates/spirv-builder", version = "=0.10.0-alpha.1", default-features = false } -spirv-std = { path = "./crates/spirv-std", version = "=0.10.0-alpha.1" } -spirv-std-types = { path = "./crates/spirv-std/shared", version = "=0.10.0-alpha.1" } -spirv-std-macros = { path = "./crates/spirv-std/macros", version = "=0.10.0-alpha.1" } +spirv-builder = { path = "./crates/spirv-builder", version = "=0.10.0-alpha.2", default-features = false } +spirv-std = { path = "./crates/spirv-std", version = "=0.10.0-alpha.2" } +spirv-std-types = { path = "./crates/spirv-std/shared", version = "=0.10.0-alpha.2" } +spirv-std-macros = { path = "./crates/spirv-std/macros", version = "=0.10.0-alpha.2" } spirv-tools = { version = "0.13.0", default-features = false } -rustc_codegen_spirv = { path = "./crates/rustc_codegen_spirv", version = "=0.10.0-alpha.1", default-features = false } -rustc_codegen_spirv-types = { path = "./crates/rustc_codegen_spirv-types", version = "=0.10.0-alpha.1" } -cargo-gpu-install = { path = "./crates/cargo-gpu-install", version = "=0.10.0-alpha.1" } +rustc_codegen_spirv = { path = "./crates/rustc_codegen_spirv", version = "=0.10.0-alpha.2", default-features = false } +rustc_codegen_spirv-types = { path = "./crates/rustc_codegen_spirv-types", version = "=0.10.0-alpha.2" } +cargo-gpu-install = { path = "./crates/cargo-gpu-install", version = "=0.10.0-alpha.2" } # normal dependencies anyhow = "1.0.98" From 0ccbbb59875659894acce189f2a6fbeaaebc6cf1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 6 Aug 2026 00:17:37 +0000 Subject: [PATCH 2/2] chore: update difftest Cargo.lock --- tests/difftests/tests/Cargo.lock | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/difftests/tests/Cargo.lock b/tests/difftests/tests/Cargo.lock index e44a2afb857..019c454e484 100644 --- a/tests/difftests/tests/Cargo.lock +++ b/tests/difftests/tests/Cargo.lock @@ -1634,7 +1634,7 @@ checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d" [[package]] name = "rustc_codegen_spirv" -version = "0.10.0-alpha.1" +version = "0.10.0-alpha.2" dependencies = [ "ahash", "ar", @@ -1667,7 +1667,7 @@ dependencies = [ [[package]] name = "rustc_codegen_spirv-types" -version = "0.10.0-alpha.1" +version = "0.10.0-alpha.2" dependencies = [ "rspirv", "semver", @@ -1897,7 +1897,7 @@ dependencies = [ [[package]] name = "spirv-builder" -version = "0.10.0-alpha.1" +version = "0.10.0-alpha.2" dependencies = [ "cargo_metadata", "log", @@ -1913,7 +1913,7 @@ dependencies = [ [[package]] name = "spirv-std" -version = "0.10.0-alpha.1" +version = "0.10.0-alpha.2" dependencies = [ "bitflags", "glam", @@ -1925,7 +1925,7 @@ dependencies = [ [[package]] name = "spirv-std-macros" -version = "0.10.0-alpha.1" +version = "0.10.0-alpha.2" dependencies = [ "proc-macro2", "quote", @@ -1935,7 +1935,7 @@ dependencies = [ [[package]] name = "spirv-std-types" -version = "0.10.0-alpha.1" +version = "0.10.0-alpha.2" [[package]] name = "spirv-tools"