chore: Release

This commit is contained in:
chyyran 2024-09-21 01:53:56 -04:00
parent 72a98272f3
commit 60d2c3f177
9 changed files with 23 additions and 23 deletions

16
Cargo.lock generated
View file

@ -1464,7 +1464,7 @@ dependencies = [
[[package]]
name = "librashader"
version = "0.4.3"
version = "0.4.4"
dependencies = [
"ash",
"glob",
@ -1518,7 +1518,7 @@ dependencies = [
[[package]]
name = "librashader-capi"
version = "0.4.3"
version = "0.4.4"
dependencies = [
"ash",
"gl",
@ -1631,7 +1631,7 @@ dependencies = [
[[package]]
name = "librashader-runtime-d3d12"
version = "0.4.3"
version = "0.4.4"
dependencies = [
"array-concat",
"array-init",
@ -1656,7 +1656,7 @@ dependencies = [
[[package]]
name = "librashader-runtime-d3d9"
version = "0.4.3"
version = "0.4.4"
dependencies = [
"array-concat",
"bytemuck",
@ -1675,7 +1675,7 @@ dependencies = [
[[package]]
name = "librashader-runtime-gl"
version = "0.4.3"
version = "0.4.4"
dependencies = [
"bytemuck",
"gl",
@ -1694,7 +1694,7 @@ dependencies = [
[[package]]
name = "librashader-runtime-mtl"
version = "0.4.3"
version = "0.4.4"
dependencies = [
"array-concat",
"bytemuck",
@ -1715,7 +1715,7 @@ dependencies = [
[[package]]
name = "librashader-runtime-vk"
version = "0.4.3"
version = "0.4.4"
dependencies = [
"array-concat",
"ash",
@ -1739,7 +1739,7 @@ dependencies = [
[[package]]
name = "librashader-runtime-wgpu"
version = "0.4.3"
version = "0.4.4"
dependencies = [
"array-concat",
"bytemuck",

View file

@ -3,7 +3,7 @@ name = "librashader-capi"
edition = "2021"
license = "MPL-2.0 OR GPL-3.0-only"
version = "0.4.3"
version = "0.4.4"
authors = ["Ronny Chan <ronny@ronnychan.ca>"]
repository = "https://github.com/SnowflakePowered/librashader"
readme = "../README.md"
@ -47,7 +47,7 @@ ash = { workspace = true, optional = true }
[dependencies.librashader]
path = "../librashader"
version = "0.4.3"
version = "0.4.4"
default-features = false
features = ["reflect", "presets", "preprocess"]

View file

@ -3,7 +3,7 @@ name = "librashader-runtime-d3d12"
edition = "2021"
license = "MPL-2.0 OR GPL-3.0-only"
version = "0.4.3"
version = "0.4.4"
authors = ["Ronny Chan <ronny@ronnychan.ca>"]
repository = "https://github.com/SnowflakePowered/librashader"
readme = "../README.md"

View file

@ -3,7 +3,7 @@ name = "librashader-runtime-d3d9"
edition = "2021"
license = "MPL-2.0 OR GPL-3.0-only"
version = "0.4.3"
version = "0.4.4"
authors = ["Ronny Chan <ronny@ronnychan.ca>"]
repository = "https://github.com/SnowflakePowered/librashader"
readme = "../README.md"

View file

@ -3,7 +3,7 @@ name = "librashader-runtime-gl"
edition = "2021"
license = "MPL-2.0 OR GPL-3.0-only"
version = "0.4.3"
version = "0.4.4"
authors = ["Ronny Chan <ronny@ronnychan.ca>"]
repository = "https://github.com/SnowflakePowered/librashader"
readme = "../README.md"

View file

@ -3,7 +3,7 @@ name = "librashader-runtime-mtl"
edition = "2021"
license = "MPL-2.0 OR GPL-3.0-only"
version = "0.4.3"
version = "0.4.4"
authors = ["Ronny Chan <ronny@ronnychan.ca>"]
repository = "https://github.com/SnowflakePowered/librashader"
readme = "../README.md"

View file

@ -3,7 +3,7 @@ name = "librashader-runtime-vk"
edition = "2021"
license = "MPL-2.0 OR GPL-3.0-only"
version = "0.4.3"
version = "0.4.4"
authors = ["Ronny Chan <ronny@ronnychan.ca>"]
repository = "https://github.com/SnowflakePowered/librashader"
readme = "../README.md"

View file

@ -2,7 +2,7 @@
name = "librashader-runtime-wgpu"
edition = "2021"
version = "0.4.3"
version = "0.4.4"
license = "MPL-2.0 OR GPL-3.0-only"
authors = ["Ronny Chan <ronny@ronnychan.ca>"]
repository = "https://github.com/SnowflakePowered/librashader"

View file

@ -4,7 +4,7 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
license = "MPL-2.0 OR GPL-3.0-only"
version = "0.4.3"
version = "0.4.4"
authors = ["Ronny Chan <ronny@ronnychan.ca>"]
repository = "https://github.com/SnowflakePowered/librashader"
readme = "../README.md"
@ -20,12 +20,12 @@ librashader-reflect = { path = "../librashader-reflect", version = "0.4.3" }
librashader-cache = { path = "../librashader-cache", version = "0.4.3" }
librashader-runtime = { path = "../librashader-runtime", version = "0.4.3" }
librashader-runtime-d3d11 = { path = "../librashader-runtime-d3d11", version = "0.4.3", optional = true }
librashader-runtime-d3d12 = { path = "../librashader-runtime-d3d12", version = "0.4.3", optional = true }
librashader-runtime-d3d9 = { path = "../librashader-runtime-d3d9", version = "0.4.3", optional = true }
librashader-runtime-gl = { path = "../librashader-runtime-gl", version = "0.4.3", optional = true }
librashader-runtime-vk = { path = "../librashader-runtime-vk", version = "0.4.3", optional = true }
librashader-runtime-mtl = { path = "../librashader-runtime-mtl", version = "0.4.3", optional = true }
librashader-runtime-wgpu = { path = "../librashader-runtime-wgpu", version = "0.4.3", optional = true }
librashader-runtime-d3d12 = { path = "../librashader-runtime-d3d12", version = "0.4.4", optional = true }
librashader-runtime-d3d9 = { path = "../librashader-runtime-d3d9", version = "0.4.4", optional = true }
librashader-runtime-gl = { path = "../librashader-runtime-gl", version = "0.4.4", optional = true }
librashader-runtime-vk = { path = "../librashader-runtime-vk", version = "0.4.4", optional = true }
librashader-runtime-mtl = { path = "../librashader-runtime-mtl", version = "0.4.4", optional = true }
librashader-runtime-wgpu = { path = "../librashader-runtime-wgpu", version = "0.4.4", optional = true }
ash = { version = "0.38", optional = true }
halfbrown = "0.2.4"