From ebb944213d5eb47d202667683b9695d5f7e49082 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 4 May 2026 05:22:54 +0000 Subject: [PATCH] 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 0af3dbb111..80bbb4e5ab 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-05-04 ## [0.10.0-alpha.1](https://github.com/Rust-GPU/rust-gpu/compare/v0.9.0...v0.10.0-alpha.1) - 2026-04-13 Toolchain: `nightly-2026-04-11` (rustc 1.96.0) diff --git a/Cargo.lock b/Cargo.lock index be2d34c2bf..11371df6cd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -364,7 +364,7 @@ dependencies = [ [[package]] name = "cargo-gpu" -version = "0.10.0-alpha.1" +version = "0.10.0-alpha.2" dependencies = [ "anyhow", "cargo-gpu-install", @@ -382,7 +382,7 @@ dependencies = [ [[package]] name = "cargo-gpu-install" -version = "0.10.0-alpha.1" +version = "0.10.0-alpha.2" dependencies = [ "anyhow", "cargo-util-schemas", @@ -3000,7 +3000,7 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" [[package]] name = "rustc_codegen_spirv" -version = "0.10.0-alpha.1" +version = "0.10.0-alpha.2" dependencies = [ "ahash", "ar", @@ -3034,7 +3034,7 @@ dependencies = [ [[package]] name = "rustc_codegen_spirv-types" -version = "0.10.0-alpha.1" +version = "0.10.0-alpha.2" dependencies = [ "rspirv", "semver", @@ -3441,7 +3441,7 @@ dependencies = [ [[package]] name = "spirv-builder" -version = "0.10.0-alpha.1" +version = "0.10.0-alpha.2" dependencies = [ "cargo_metadata", "clap", @@ -3459,7 +3459,7 @@ dependencies = [ [[package]] name = "spirv-std" -version = "0.10.0-alpha.1" +version = "0.10.0-alpha.2" dependencies = [ "bitflags 1.3.2", "bytemuck", @@ -3472,7 +3472,7 @@ dependencies = [ [[package]] name = "spirv-std-macros" -version = "0.10.0-alpha.1" +version = "0.10.0-alpha.2" dependencies = [ "proc-macro2", "quote", @@ -3482,7 +3482,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 644150272e..58ea125525 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"