-
Notifications
You must be signed in to change notification settings - Fork 245
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
24 changed files
with
76 additions
and
57 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "rustc_codegen_spirv" | ||
version = "0.4.0-alpha.10" | ||
version = "0.4.0-alpha.11" | ||
authors = ["Embark <[email protected]>"] | ||
edition = "2018" | ||
license = "MIT OR Apache-2.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "spirv-builder" | ||
version = "0.4.0-alpha.10" | ||
version = "0.4.0-alpha.11" | ||
authors = ["Embark <[email protected]>"] | ||
edition = "2018" | ||
license = "MIT OR Apache-2.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "spirv-std" | ||
version = "0.4.0-alpha.10" | ||
version = "0.4.0-alpha.11" | ||
authors = ["Embark <[email protected]>"] | ||
edition = "2018" | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -10,9 +10,9 @@ description = "Standard functions and types for SPIR-V" | |
[dependencies] | ||
bitflags = "1.2.1" | ||
num-traits = { version = "0.2.14", default-features = false, features = ["libm"] } | ||
spirv-types = { path = "./shared", version = "0.4.0-alpha.10" } | ||
spirv-std-macros = { path = "./macros", version = "0.4.0-alpha.10" } | ||
glam = { version = "0.16.0", default-features = false, features = ["libm"], optional = true } | ||
spirv-types = { path = "./shared", version = "0.4.0-alpha.11" } | ||
spirv-std-macros = { path = "./macros", version = "0.4.0-alpha.11" } | ||
glam = { version = "0.17.0", default-features = false, features = ["libm"], optional = true } | ||
|
||
[features] | ||
default = [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "spirv-std-macros" | ||
version = "0.4.0-alpha.10" | ||
version = "0.4.0-alpha.11" | ||
authors = ["Embark <[email protected]>"] | ||
edition = "2018" | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -11,7 +11,7 @@ description = "Macros for spirv-std" | |
proc-macro = true | ||
|
||
[dependencies] | ||
spirv-types = { path = "../shared", version = "0.4.0-alpha.10" } | ||
spirv-types = { path = "../shared", version = "0.4.0-alpha.11" } | ||
heck = "0.3.2" | ||
proc-macro2 = "1.0.24" | ||
quote = "1.0.8" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "spirv-types" | ||
description = "SPIR-V types shared between spirv-std and spirv-std-macros" | ||
version = "0.4.0-alpha.10" | ||
version = "0.4.0-alpha.11" | ||
authors = ["Embark <[email protected]>"] | ||
edition = "2018" | ||
license = "MIT OR Apache-2.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Publishing rust-gpu on crates.io | ||
|
||
This is a task list for the maintainers of rust-gpu to remember to do when publishing a new version | ||
of rust-gpu (probably not useful for contributors without access to embark's crates.io account :P) | ||
|
||
1. Bump all the versions in rust-gpu to the next one. I've found this command to be useful: | ||
`rg --files-with-matches alpha | xargs sed -i 's/0.4.0-alpha.10/0.4.0-alpha.11/g'` (replacing with | ||
whatever versions are relevant) | ||
2. Create a PR with that change. Wait for CI and a review, and merge it. | ||
3. Pull the merged `main` branch. | ||
4. Tag `main` with the version: `git tag v0.4.0-alpha.11` | ||
5. Push the tag: `git push origin v0.4.0-alpha.11` | ||
6. Publish the crates: `cd [crate] && cargo publish` (make sure `.cargo/credentials` is set to | ||
embark's token) - crates to be published, in order: | ||
1. crates/spirv-std/shared | ||
2. crates/spirv-std/macros | ||
3. crates/spirv-std |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "multibuilder" | ||
version = "0.4.0-alpha.10" | ||
version = "0.4.0-alpha.11" | ||
authors = ["Embark <[email protected]>"] | ||
edition = "2018" | ||
license = "MIT OR Apache-2.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "example-runner-ash" | ||
version = "0.4.0-alpha.10" | ||
version = "0.4.0-alpha.11" | ||
authors = ["Embark <[email protected]>"] | ||
edition = "2018" | ||
license = "MIT OR Apache-2.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "example-runner-cpu" | ||
version = "0.4.0-alpha.10" | ||
version = "0.4.0-alpha.11" | ||
authors = ["Embark <[email protected]>"] | ||
edition = "2018" | ||
license = "MIT OR Apache-2.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "example-runner-wgpu" | ||
version = "0.4.0-alpha.10" | ||
version = "0.4.0-alpha.11" | ||
authors = ["Embark <[email protected]>"] | ||
edition = "2018" | ||
license = "MIT OR Apache-2.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "example-runner-wgpu-builder" | ||
version = "0.4.0-alpha.10" | ||
version = "0.4.0-alpha.11" | ||
authors = ["Embark <[email protected]>"] | ||
edition = "2018" | ||
license = "MIT OR Apache-2.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "compute-shader" | ||
version = "0.4.0-alpha.10" | ||
version = "0.4.0-alpha.11" | ||
authors = ["Embark <[email protected]>"] | ||
edition = "2018" | ||
license = "MIT OR Apache-2.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "mouse-shader" | ||
version = "0.4.0-alpha.10" | ||
version = "0.4.0-alpha.11" | ||
authors = ["Embark <[email protected]>"] | ||
edition = "2018" | ||
license = "MIT OR Apache-2.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "shared" | ||
version = "0.4.0-alpha.10" | ||
version = "0.4.0-alpha.11" | ||
authors = ["Embark <[email protected]>"] | ||
edition = "2018" | ||
license = "MIT OR Apache-2.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "simplest-shader" | ||
version = "0.4.0-alpha.10" | ||
version = "0.4.0-alpha.11" | ||
authors = ["Embark <[email protected]>"] | ||
edition = "2018" | ||
license = "MIT OR Apache-2.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "sky-shader" | ||
version = "0.4.0-alpha.10" | ||
version = "0.4.0-alpha.11" | ||
authors = ["Embark <[email protected]>"] | ||
edition = "2018" | ||
license = "MIT OR Apache-2.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "compiletests" | ||
version = "0.4.0-alpha.10" | ||
version = "0.4.0-alpha.11" | ||
authors = ["Embark <[email protected]>"] | ||
edition = "2018" | ||
license = "MIT OR Apache-2.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "compiletests-deps-helper" | ||
version = "0.4.0-alpha.10" | ||
version = "0.4.0-alpha.11" | ||
description = "Shared dependencies of all the compiletest tests" | ||
authors = ["Embark <[email protected]>"] | ||
edition = "2018" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.