mirror of
https://github.com/Rust-GPU/rust-gpu.git
synced 2026-06-04 16:49:51 +09:00
chore: release v0.10.0-alpha.2
This commit is contained in:
committed by
GitHub
parent
2cede3c5d7
commit
40f475dabf
@@ -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-04-20
|
||||
## [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)
|
||||
|
||||
16
Cargo.lock
generated
16
Cargo.lock
generated
@@ -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",
|
||||
@@ -2979,7 +2979,7 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
||||
|
||||
[[package]]
|
||||
name = "rustc_codegen_spirv"
|
||||
version = "0.10.0-alpha.1"
|
||||
version = "0.10.0-alpha.2"
|
||||
dependencies = [
|
||||
"ahash",
|
||||
"ar",
|
||||
@@ -3013,7 +3013,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "rustc_codegen_spirv-types"
|
||||
version = "0.10.0-alpha.1"
|
||||
version = "0.10.0-alpha.2"
|
||||
dependencies = [
|
||||
"rspirv",
|
||||
"semver",
|
||||
@@ -3420,7 +3420,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "spirv-builder"
|
||||
version = "0.10.0-alpha.1"
|
||||
version = "0.10.0-alpha.2"
|
||||
dependencies = [
|
||||
"cargo_metadata",
|
||||
"clap",
|
||||
@@ -3438,7 +3438,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "spirv-std"
|
||||
version = "0.10.0-alpha.1"
|
||||
version = "0.10.0-alpha.2"
|
||||
dependencies = [
|
||||
"bitflags 1.3.2",
|
||||
"bytemuck",
|
||||
@@ -3451,7 +3451,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "spirv-std-macros"
|
||||
version = "0.10.0-alpha.1"
|
||||
version = "0.10.0-alpha.2"
|
||||
dependencies = [
|
||||
"proc-macro2",
|
||||
"quote",
|
||||
@@ -3461,7 +3461,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "spirv-std-types"
|
||||
version = "0.10.0-alpha.1"
|
||||
version = "0.10.0-alpha.2"
|
||||
|
||||
[[package]]
|
||||
name = "spirv-tools"
|
||||
|
||||
16
Cargo.toml
16
Cargo.toml
@@ -43,7 +43,7 @@ exclude = [
|
||||
]
|
||||
|
||||
[workspace.package]
|
||||
version = "0.10.0-alpha.1"
|
||||
version = "0.10.0-alpha.2"
|
||||
authors = ["rust-gpu developers", "Embark <opensource@embark-studios.com>"]
|
||||
edition = "2024"
|
||||
license = "MIT OR Apache-2.0"
|
||||
@@ -54,14 +54,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"
|
||||
|
||||
Reference in New Issue
Block a user