Skip to content

Commit cbdbdaf

Browse files
committed
chore: Release
1 parent ffcb8ba commit cbdbdaf

File tree

18 files changed

+114
-114
lines changed

18 files changed

+114
-114
lines changed

Cargo.lock

+17-17
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

librashader-cache/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "librashader-cache"
33
edition = "2021"
44
license = "MPL-2.0 OR GPL-3.0-only"
5-
version = "0.5.0"
5+
version = "0.5.1"
66
authors = ["Ronny Chan <[email protected]>"]
77
repository = "https://github.com/SnowflakePowered/librashader"
88
readme = "../README.md"
@@ -12,8 +12,8 @@ description = "RetroArch shaders for all."
1212

1313
[dependencies]
1414
serde = { version = "1.0" }
15-
librashader-reflect = { path = "../librashader-reflect", version = "0.5.0", features = ["serde"] }
16-
librashader-preprocess = { path = "../librashader-preprocess", version = "0.5.0" }
15+
librashader-reflect = { path = "../librashader-reflect", version = "0.5.1", features = ["serde"] }
16+
librashader-preprocess = { path = "../librashader-preprocess", version = "0.5.1" }
1717
platform-dirs = "0.3.0"
1818
blake3 = { version = "1.5.4" }
1919
thiserror = "1.0.38"

librashader-capi/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "librashader-capi"
33
edition = "2021"
44

55
license = "MPL-2.0 OR GPL-3.0-only"
6-
version = "0.5.0"
6+
version = "0.5.1"
77
authors = ["Ronny Chan <[email protected]>"]
88
repository = "https://github.com/SnowflakePowered/librashader"
99
readme = "../README.md"
@@ -47,7 +47,7 @@ ash = { workspace = true, optional = true }
4747

4848
[dependencies.librashader]
4949
path = "../librashader"
50-
version = "0.5.0"
50+
version = "0.5.1"
5151
default-features = false
5252
features = ["reflect", "presets", "preprocess"]
5353

librashader-cli/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "librashader-cli"
33
edition = "2021"
44
license = "MPL-2.0 OR GPL-3.0-only"
5-
version = "0.5.0"
5+
version = "0.5.1"
66
authors = ["Ronny Chan <[email protected]>"]
77
repository = "https://github.com/SnowflakePowered/librashader"
88
readme = "../README.md"
@@ -19,8 +19,8 @@ name = "librashader-cli"
1919
path = "src/cli/main.rs"
2020

2121
[dependencies]
22-
librashader = { version = "0.5.0", path = "../librashader", features = ["presets", "preprocess", "serde"], default-features = false }
23-
librashader-runtime = { version = "0.5.0", path = "../librashader-runtime"}
22+
librashader = { version = "0.5.1", path = "../librashader", features = ["presets", "preprocess", "serde"], default-features = false }
23+
librashader-runtime = { version = "0.5.1", path = "../librashader-runtime"}
2424
wgpu = { version = "22", default-features = false, optional = true }
2525
wgpu-types = { version = "22", optional = true }
2626
anyhow = "1.0.86"

librashader-common/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "librashader-common"
33
edition = "2021"
44

55
license = "MPL-2.0 OR GPL-3.0-only"
6-
version = "0.5.0"
6+
version = "0.5.1"
77
authors = ["Ronny Chan <[email protected]>"]
88
repository = "https://github.com/SnowflakePowered/librashader"
99
readme = "../README.md"

librashader-pack/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "librashader-pack"
3-
version = "0.5.0"
3+
version = "0.5.1"
44
edition = "2021"
55
license = "MPL-2.0 OR GPL-3.0-only"
66
authors = ["Ronny Chan <[email protected]>"]
@@ -11,8 +11,8 @@ keywords = ["shader", "retroarch", "SPIR-V"]
1111
description = "RetroArch shaders for all."
1212

1313
[dependencies]
14-
librashader-presets = { path = "../librashader-presets", version = "0.5.0", features = ["serde"] }
15-
librashader-preprocess = { path = "../librashader-preprocess", version = "0.5.0", features = ["serde"] }
14+
librashader-presets = { path = "../librashader-presets", version = "0.5.1", features = ["serde"] }
15+
librashader-preprocess = { path = "../librashader-preprocess", version = "0.5.1", features = ["serde"] }
1616

1717
thiserror = "1.0.64"
1818
serde = { version = "1.0", features = ["derive"], optional = true }

librashader-preprocess/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "librashader-preprocess"
33
edition = "2021"
44

55
license = "MPL-2.0 OR GPL-3.0-only"
6-
version = "0.5.0"
6+
version = "0.5.1"
77
authors = ["Ronny Chan <[email protected]>"]
88
repository = "https://github.com/SnowflakePowered/librashader"
99
readme = "../README.md"
@@ -14,7 +14,7 @@ description = "RetroArch shaders for all."
1414
[dependencies]
1515
thiserror = "1.0.37"
1616
nom = "7.1.1"
17-
librashader-common = { path = "../librashader-common", version = "0.5.0" }
17+
librashader-common = { path = "../librashader-common", version = "0.5.1" }
1818
encoding_rs = "0.8.31"
1919
serde = { version = "1.0", optional = true }
2020

librashader-presets/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "librashader-presets"
33
edition = "2021"
44

55
license = "MPL-2.0 OR GPL-3.0-only"
6-
version = "0.5.0"
6+
version = "0.5.1"
77
authors = ["Ronny Chan <[email protected]>"]
88
repository = "https://github.com/SnowflakePowered/librashader"
99
readme = "../README.md"
@@ -15,7 +15,7 @@ description = "RetroArch shaders for all."
1515
thiserror = "1.0.37"
1616
nom = "7.1.1"
1717
nom_locate = "4.0.0"
18-
librashader-common = { path = "../librashader-common", version = "0.5.0" }
18+
librashader-common = { path = "../librashader-common", version = "0.5.1" }
1919
num-traits = "0.2"
2020
once_cell = "1"
2121
# we don't need unicode

librashader-reflect/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "librashader-reflect"
33
edition = "2021"
44

55
license = "MPL-2.0 OR GPL-3.0-only"
6-
version = "0.5.0"
6+
version = "0.5.1"
77
authors = ["Ronny Chan <[email protected]>"]
88
repository = "https://github.com/SnowflakePowered/librashader"
99
readme = "../README.md"
@@ -18,10 +18,10 @@ bytemuck = "1.13.0"
1818
thiserror = "1.0.37"
1919
bitflags = "2.4.2"
2020

21-
librashader-common = { path = "../librashader-common", version = "0.5.0" }
22-
librashader-preprocess = { path = "../librashader-preprocess", version = "0.5.0" }
23-
librashader-presets = { path = "../librashader-presets", version = "0.5.0" }
24-
librashader-pack = { path = "../librashader-pack", version = "0.5.0" }
21+
librashader-common = { path = "../librashader-common", version = "0.5.1" }
22+
librashader-preprocess = { path = "../librashader-preprocess", version = "0.5.1" }
23+
librashader-presets = { path = "../librashader-presets", version = "0.5.1" }
24+
librashader-pack = { path = "../librashader-pack", version = "0.5.1" }
2525

2626
spirv-cross2 = { workspace = true, optional = true }
2727

librashader-runtime-d3d11/Cargo.toml

+8-8
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "librashader-runtime-d3d11"
33
edition = "2021"
44

55
license = "MPL-2.0 OR GPL-3.0-only"
6-
version = "0.5.0"
6+
version = "0.5.1"
77
authors = ["Ronny Chan <[email protected]>"]
88
repository = "https://github.com/SnowflakePowered/librashader"
99
readme = "../README.md"
@@ -12,13 +12,13 @@ keywords = ["shader", "retroarch", "SPIR-V"]
1212
description = "RetroArch shaders for all."
1313

1414
[dependencies]
15-
librashader-common = { path = "../librashader-common", features = ["d3d11"], version = "0.5.0" }
16-
librashader-presets = { path = "../librashader-presets", version = "0.5.0" }
17-
librashader-preprocess = { path = "../librashader-preprocess", version = "0.5.0" }
18-
librashader-pack = { path = "../librashader-pack", version = "0.5.0" }
19-
librashader-reflect = { path = "../librashader-reflect", version = "0.5.0" }
20-
librashader-runtime = { path = "../librashader-runtime", version = "0.5.0" }
21-
librashader-cache = { path = "../librashader-cache", version = "0.5.0", features = ["d3d"] }
15+
librashader-common = { path = "../librashader-common", features = ["d3d11"], version = "0.5.1" }
16+
librashader-presets = { path = "../librashader-presets", version = "0.5.1" }
17+
librashader-preprocess = { path = "../librashader-preprocess", version = "0.5.1" }
18+
librashader-pack = { path = "../librashader-pack", version = "0.5.1" }
19+
librashader-reflect = { path = "../librashader-reflect", version = "0.5.1" }
20+
librashader-runtime = { path = "../librashader-runtime", version = "0.5.1" }
21+
librashader-cache = { path = "../librashader-cache", version = "0.5.1", features = ["d3d"] }
2222

2323
thiserror = "1.0.37"
2424
bytemuck = "1.12.3"

librashader-runtime-d3d12/Cargo.toml

+8-8
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "librashader-runtime-d3d12"
33
edition = "2021"
44

55
license = "MPL-2.0 OR GPL-3.0-only"
6-
version = "0.5.0"
6+
version = "0.5.1"
77
authors = ["Ronny Chan <[email protected]>"]
88
repository = "https://github.com/SnowflakePowered/librashader"
99
readme = "../README.md"
@@ -12,13 +12,13 @@ keywords = ["shader", "retroarch", "SPIR-V"]
1212
description = "RetroArch shaders for all."
1313

1414
[dependencies]
15-
librashader-common = { path = "../librashader-common", features = ["d3d12"], version = "0.5.0" }
16-
librashader-presets = { path = "../librashader-presets", version = "0.5.0" }
17-
librashader-preprocess = { path = "../librashader-preprocess", version = "0.5.0" }
18-
librashader-reflect = { path = "../librashader-reflect", version = "0.5.0", features = ["dxil"] }
19-
librashader-pack = { path = "../librashader-pack", version = "0.5.0" }
20-
librashader-runtime = { path = "../librashader-runtime", version = "0.5.0" }
21-
librashader-cache = { path = "../librashader-cache", version = "0.5.0", features = ["d3d"] }
15+
librashader-common = { path = "../librashader-common", features = ["d3d12"], version = "0.5.1" }
16+
librashader-presets = { path = "../librashader-presets", version = "0.5.1" }
17+
librashader-preprocess = { path = "../librashader-preprocess", version = "0.5.1" }
18+
librashader-reflect = { path = "../librashader-reflect", version = "0.5.1", features = ["dxil"] }
19+
librashader-pack = { path = "../librashader-pack", version = "0.5.1" }
20+
librashader-runtime = { path = "../librashader-runtime", version = "0.5.1" }
21+
librashader-cache = { path = "../librashader-cache", version = "0.5.1", features = ["d3d"] }
2222

2323
thiserror = "1.0.37"
2424

librashader-runtime-d3d9/Cargo.toml

+8-8
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "librashader-runtime-d3d9"
33
edition = "2021"
44

55
license = "MPL-2.0 OR GPL-3.0-only"
6-
version = "0.5.0"
6+
version = "0.5.1"
77
authors = ["Ronny Chan <[email protected]>"]
88
repository = "https://github.com/SnowflakePowered/librashader"
99
readme = "../README.md"
@@ -12,13 +12,13 @@ keywords = ["shader", "retroarch", "SPIR-V"]
1212
description = "RetroArch shaders for all."
1313

1414
[dependencies]
15-
librashader-common = { path = "../librashader-common", features = ["d3d9", "d3d11"], version = "0.5.0" }
16-
librashader-presets = { path = "../librashader-presets", version = "0.5.0" }
17-
librashader-preprocess = { path = "../librashader-preprocess", version = "0.5.0" }
18-
librashader-reflect = { path = "../librashader-reflect", version = "0.5.0" }
19-
librashader-pack = { path = "../librashader-pack", version = "0.5.0" }
20-
librashader-runtime = { path = "../librashader-runtime", version = "0.5.0" }
21-
librashader-cache = { path = "../librashader-cache", version = "0.5.0", features = ["d3d"] }
15+
librashader-common = { path = "../librashader-common", features = ["d3d9", "d3d11"], version = "0.5.1" }
16+
librashader-presets = { path = "../librashader-presets", version = "0.5.1" }
17+
librashader-preprocess = { path = "../librashader-preprocess", version = "0.5.1" }
18+
librashader-reflect = { path = "../librashader-reflect", version = "0.5.1" }
19+
librashader-pack = { path = "../librashader-pack", version = "0.5.1" }
20+
librashader-runtime = { path = "../librashader-runtime", version = "0.5.1" }
21+
librashader-cache = { path = "../librashader-cache", version = "0.5.1", features = ["d3d"] }
2222

2323
thiserror = "1.0.37"
2424
bytemuck = "1.12.3"

0 commit comments

Comments
 (0)