Release v0.4.0-alpha.12 (#719)

This commit is contained in:
Ashley Hauck 2021-08-12 12:46:32 +02:00 committed by GitHub
parent 908499744f
commit 44c9fdd8c5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
19 changed files with 40 additions and 40 deletions

34
Cargo.lock generated
View File

@ -413,7 +413,7 @@ dependencies = [
[[package]]
name = "compiletests"
version = "0.4.0-alpha.11"
version = "0.4.0-alpha.12"
dependencies = [
"compiletest_rs",
"rustc_codegen_spirv",
@ -422,14 +422,14 @@ dependencies = [
[[package]]
name = "compiletests-deps-helper"
version = "0.4.0-alpha.11"
version = "0.4.0-alpha.12"
dependencies = [
"spirv-std",
]
[[package]]
name = "compute-shader"
version = "0.4.0-alpha.11"
version = "0.4.0-alpha.12"
dependencies = [
"rayon",
"spirv-std",
@ -801,7 +801,7 @@ dependencies = [
[[package]]
name = "example-runner-ash"
version = "0.4.0-alpha.11"
version = "0.4.0-alpha.12"
dependencies = [
"ash",
"ash-molten",
@ -817,7 +817,7 @@ dependencies = [
[[package]]
name = "example-runner-cpu"
version = "0.4.0-alpha.11"
version = "0.4.0-alpha.12"
dependencies = [
"minifb",
"rayon",
@ -827,7 +827,7 @@ dependencies = [
[[package]]
name = "example-runner-wgpu"
version = "0.4.0-alpha.11"
version = "0.4.0-alpha.12"
dependencies = [
"bytemuck",
"cfg-if 1.0.0",
@ -848,7 +848,7 @@ dependencies = [
[[package]]
name = "example-runner-wgpu-builder"
version = "0.4.0-alpha.11"
version = "0.4.0-alpha.12"
dependencies = [
"spirv-builder",
]
@ -1583,7 +1583,7 @@ dependencies = [
[[package]]
name = "mouse-shader"
version = "0.4.0-alpha.11"
version = "0.4.0-alpha.12"
dependencies = [
"shared",
"spirv-std",
@ -1591,7 +1591,7 @@ dependencies = [
[[package]]
name = "multibuilder"
version = "0.4.0-alpha.11"
version = "0.4.0-alpha.12"
dependencies = [
"spirv-builder",
]
@ -2191,7 +2191,7 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
[[package]]
name = "rustc_codegen_spirv"
version = "0.4.0-alpha.11"
version = "0.4.0-alpha.12"
dependencies = [
"bimap",
"hashbrown 0.11.2",
@ -2345,7 +2345,7 @@ dependencies = [
[[package]]
name = "shared"
version = "0.4.0-alpha.11"
version = "0.4.0-alpha.12"
dependencies = [
"bytemuck",
"spirv-std",
@ -2359,7 +2359,7 @@ checksum = "7fdf1b9db47230893d76faad238fd6097fd6d6a9245cd7a4d90dbd639536bbd2"
[[package]]
name = "simplest-shader"
version = "0.4.0-alpha.11"
version = "0.4.0-alpha.12"
dependencies = [
"shared",
"spirv-std",
@ -2367,7 +2367,7 @@ dependencies = [
[[package]]
name = "sky-shader"
version = "0.4.0-alpha.11"
version = "0.4.0-alpha.12"
dependencies = [
"shared",
"spirv-std",
@ -2412,7 +2412,7 @@ dependencies = [
[[package]]
name = "spirv-builder"
version = "0.4.0-alpha.11"
version = "0.4.0-alpha.12"
dependencies = [
"memchr",
"notify",
@ -2424,7 +2424,7 @@ dependencies = [
[[package]]
name = "spirv-std"
version = "0.4.0-alpha.11"
version = "0.4.0-alpha.12"
dependencies = [
"bitflags",
"glam",
@ -2435,7 +2435,7 @@ dependencies = [
[[package]]
name = "spirv-std-macros"
version = "0.4.0-alpha.11"
version = "0.4.0-alpha.12"
dependencies = [
"heck",
"proc-macro2",
@ -2466,7 +2466,7 @@ dependencies = [
[[package]]
name = "spirv-types"
version = "0.4.0-alpha.11"
version = "0.4.0-alpha.12"
[[package]]
name = "spirv_cross"

View File

@ -1,6 +1,6 @@
[package]
name = "rustc_codegen_spirv"
version = "0.4.0-alpha.11"
version = "0.4.0-alpha.12"
authors = ["Embark <opensource@embark-studios.com>"]
edition = "2018"
license = "MIT OR Apache-2.0"

View File

@ -1,6 +1,6 @@
[package]
name = "spirv-builder"
version = "0.4.0-alpha.11"
version = "0.4.0-alpha.12"
authors = ["Embark <opensource@embark-studios.com>"]
edition = "2018"
license = "MIT OR Apache-2.0"

View File

@ -1,6 +1,6 @@
[package]
name = "spirv-std"
version = "0.4.0-alpha.11"
version = "0.4.0-alpha.12"
authors = ["Embark <opensource@embark-studios.com>"]
edition = "2018"
license = "MIT OR Apache-2.0"
@ -10,8 +10,8 @@ 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.11" }
spirv-std-macros = { path = "./macros", version = "0.4.0-alpha.11" }
spirv-types = { path = "./shared", version = "0.4.0-alpha.12" }
spirv-std-macros = { path = "./macros", version = "0.4.0-alpha.12" }
glam = { version = "0.17.0", default-features = false, features = ["libm"], optional = true }
[features]

View File

@ -1,6 +1,6 @@
[package]
name = "spirv-std-macros"
version = "0.4.0-alpha.11"
version = "0.4.0-alpha.12"
authors = ["Embark <opensource@embark-studios.com>"]
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.11" }
spirv-types = { path = "../shared", version = "0.4.0-alpha.12" }
heck = "0.3.2"
proc-macro2 = "1.0.24"
quote = "1.0.8"

View File

@ -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.11"
version = "0.4.0-alpha.12"
authors = ["Embark <opensource@embark-studios.com>"]
edition = "2018"
license = "MIT OR Apache-2.0"

View File

@ -4,12 +4,12 @@ This is a task list for the maintainers of rust-gpu to remember to do when publi
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
`rg --files-with-matches alpha | xargs sed -i 's/0.4.0-alpha.10/0.4.0-alpha.12/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`
4. Tag `main` with the version: `git tag v0.4.0-alpha.12`
5. Push the tag: `git push origin v0.4.0-alpha.12`
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

View File

@ -1,6 +1,6 @@
[package]
name = "multibuilder"
version = "0.4.0-alpha.11"
version = "0.4.0-alpha.12"
authors = ["Embark <opensource@embark-studios.com>"]
edition = "2018"
license = "MIT OR Apache-2.0"

View File

@ -1,6 +1,6 @@
[package]
name = "example-runner-ash"
version = "0.4.0-alpha.11"
version = "0.4.0-alpha.12"
authors = ["Embark <opensource@embark-studios.com>"]
edition = "2018"
license = "MIT OR Apache-2.0"

View File

@ -1,6 +1,6 @@
[package]
name = "example-runner-cpu"
version = "0.4.0-alpha.11"
version = "0.4.0-alpha.12"
authors = ["Embark <opensource@embark-studios.com>"]
edition = "2018"
license = "MIT OR Apache-2.0"

View File

@ -1,6 +1,6 @@
[package]
name = "example-runner-wgpu"
version = "0.4.0-alpha.11"
version = "0.4.0-alpha.12"
authors = ["Embark <opensource@embark-studios.com>"]
edition = "2018"
license = "MIT OR Apache-2.0"

View File

@ -1,6 +1,6 @@
[package]
name = "example-runner-wgpu-builder"
version = "0.4.0-alpha.11"
version = "0.4.0-alpha.12"
authors = ["Embark <opensource@embark-studios.com>"]
edition = "2018"
license = "MIT OR Apache-2.0"

View File

@ -1,6 +1,6 @@
[package]
name = "compute-shader"
version = "0.4.0-alpha.11"
version = "0.4.0-alpha.12"
authors = ["Embark <opensource@embark-studios.com>"]
edition = "2018"
license = "MIT OR Apache-2.0"

View File

@ -1,6 +1,6 @@
[package]
name = "mouse-shader"
version = "0.4.0-alpha.11"
version = "0.4.0-alpha.12"
authors = ["Embark <opensource@embark-studios.com>"]
edition = "2018"
license = "MIT OR Apache-2.0"

View File

@ -1,6 +1,6 @@
[package]
name = "shared"
version = "0.4.0-alpha.11"
version = "0.4.0-alpha.12"
authors = ["Embark <opensource@embark-studios.com>"]
edition = "2018"
license = "MIT OR Apache-2.0"

View File

@ -1,6 +1,6 @@
[package]
name = "simplest-shader"
version = "0.4.0-alpha.11"
version = "0.4.0-alpha.12"
authors = ["Embark <opensource@embark-studios.com>"]
edition = "2018"
license = "MIT OR Apache-2.0"

View File

@ -1,6 +1,6 @@
[package]
name = "sky-shader"
version = "0.4.0-alpha.11"
version = "0.4.0-alpha.12"
authors = ["Embark <opensource@embark-studios.com>"]
edition = "2018"
license = "MIT OR Apache-2.0"

View File

@ -1,6 +1,6 @@
[package]
name = "compiletests"
version = "0.4.0-alpha.11"
version = "0.4.0-alpha.12"
authors = ["Embark <opensource@embark-studios.com>"]
edition = "2018"
license = "MIT OR Apache-2.0"

View File

@ -1,6 +1,6 @@
[package]
name = "compiletests-deps-helper"
version = "0.4.0-alpha.11"
version = "0.4.0-alpha.12"
description = "Shared dependencies of all the compiletest tests"
authors = ["Embark <opensource@embark-studios.com>"]
edition = "2018"