Skip to content

Commit 3985012

Browse files
committed
Update to 0.4.0-alpha.17
* Specified exact versioning for crates within rust-gpu * Fixed spirv-std referring to an older version of spirv-std-macros
1 parent c248806 commit 3985012

File tree

9 files changed

+26
-19
lines changed

9 files changed

+26
-19
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.4.0-alpha.17]
9+
10+
### Changed 🛠️
11+
12+
- Fixed rust-gpu crates not referring to each-other by exact version
13+
- Fixed `spirv-std` referring to an older version of `spirv-std-macros`
14+
815
## [0.4.0-alpha.16]
916

1017
### Added ⭐

Cargo.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/rustc_codegen_spirv-types/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "rustc_codegen_spirv-types"
33
description = "SPIR-V backend types shared between rustc_codegen_spirv and spirv-builder"
4-
version = "0.4.0-alpha.16"
4+
version = "0.4.0-alpha.17"
55
authors = ["Embark <[email protected]>"]
66
edition = "2018"
77
license = "MIT OR Apache-2.0"

crates/rustc_codegen_spirv/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rustc_codegen_spirv"
3-
version = "0.4.0-alpha.16"
3+
version = "0.4.0-alpha.17"
44
authors = ["Embark <[email protected]>"]
55
edition = "2018"
66
license = "MIT OR Apache-2.0"
@@ -59,7 +59,7 @@ serde = { version = "1.0", features = ["derive"] }
5959
serde_json = "1.0"
6060
smallvec = { version = "1.6.1", features = ["union"] }
6161
spirv-tools = { version = "0.9", default-features = false }
62-
rustc_codegen_spirv-types = { path = "../rustc_codegen_spirv-types", version = "0.4.0-alpha.16" }
62+
rustc_codegen_spirv-types = { path = "../rustc_codegen_spirv-types", version = "=0.4.0-alpha.17" }
6363

6464
[dev-dependencies]
6565
pipe = "0.4"

crates/spirv-builder/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "spirv-builder"
3-
version = "0.4.0-alpha.16"
3+
version = "0.4.0-alpha.17"
44
authors = ["Embark <[email protected]>"]
55
edition = "2018"
66
license = "MIT OR Apache-2.0"
@@ -20,8 +20,8 @@ memchr = "2.4"
2020
raw-string = "0.3.5"
2121
serde = { version = "1.0", features = ["derive"] }
2222
serde_json = "1.0"
23-
rustc_codegen_spirv-types = { path = "../rustc_codegen_spirv-types", version = "0.4.0-alpha.16" }
23+
rustc_codegen_spirv-types = { path = "../rustc_codegen_spirv-types", version = "=0.4.0-alpha.17" }
2424
# See comment in lib.rs invoke_rustc for why this is here
25-
rustc_codegen_spirv = { path = "../rustc_codegen_spirv", version = "0.4.0-alpha.16", default-features = false }
25+
rustc_codegen_spirv = { path = "../rustc_codegen_spirv", version = "=0.4.0-alpha.17", default-features = false }
2626

2727
notify = { version = "5.0.0-pre.11", optional = true }

crates/spirv-std/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "spirv-std"
3-
version = "0.4.0-alpha.16"
3+
version = "0.4.0-alpha.17"
44
authors = ["Embark <[email protected]>"]
55
edition = "2018"
66
license = "MIT OR Apache-2.0"
@@ -10,8 +10,8 @@ description = "Standard functions and types for SPIR-V"
1010
[dependencies]
1111
bitflags = "1.2.1"
1212
num-traits = { version = "0.2.14", default-features = false, features = ["libm"] }
13-
spirv-std-types = { path = "./shared", version = "0.4.0-alpha.16" }
14-
spirv-std-macros = { path = "./macros", version = "0.4.0-alpha.13" }
13+
spirv-std-types = { path = "./shared", version = "=0.4.0-alpha.17" }
14+
spirv-std-macros = { path = "./macros", version = "=0.4.0-alpha.17" }
1515
glam = { version = "0.22", default-features = false, features = ["libm"], optional = true }
1616

1717
[features]

crates/spirv-std/macros/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "spirv-std-macros"
3-
version = "0.4.0-alpha.16"
3+
version = "0.4.0-alpha.17"
44
authors = ["Embark <[email protected]>"]
55
edition = "2018"
66
license = "MIT OR Apache-2.0"
@@ -11,7 +11,7 @@ description = "Macros for spirv-std"
1111
proc-macro = true
1212

1313
[dependencies]
14-
spirv-std-types = { path = "../shared", version = "0.4.0-alpha.16" }
14+
spirv-std-types = { path = "../shared", version = "=0.4.0-alpha.17" }
1515
proc-macro2 = "1.0.24"
1616
quote = "1.0.8"
1717
syn = { version = "1.0.58", features=["full"] }

crates/spirv-std/shared/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "spirv-std-types"
33
description = "SPIR-V types shared between spirv-std and spirv-std-macros"
4-
version = "0.4.0-alpha.16"
4+
version = "0.4.0-alpha.17"
55
authors = ["Embark <[email protected]>"]
66
edition = "2018"
77
license = "MIT OR Apache-2.0"

tests/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ use-compiled-tools = ["rustc_codegen_spirv/use-compiled-tools"]
1414

1515
[dependencies]
1616
compiletest = { version = "0.7.0", package = "compiletest_rs" }
17-
rustc_codegen_spirv = { path = "../crates/rustc_codegen_spirv", version = "0.4.0-alpha.16", default-features = false }
17+
rustc_codegen_spirv = { path = "../crates/rustc_codegen_spirv", version = "=0.4.0-alpha.17", default-features = false }
1818
structopt = "0.3.21"

0 commit comments

Comments
 (0)