Skip to content

Commit 9910638

Browse files
committed
chore: Release
1 parent d322f03 commit 9910638

File tree

17 files changed

+100
-100
lines changed

17 files changed

+100
-100
lines changed

Cargo.lock

+16-16
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.6.0"
5+
version = "0.6.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.6.0", features = ["serde"] }
16-
librashader-preprocess = { path = "../librashader-preprocess", version = "0.6.0" }
15+
librashader-reflect = { path = "../librashader-reflect", version = "0.6.1", features = ["serde"] }
16+
librashader-preprocess = { path = "../librashader-preprocess", version = "0.6.1" }
1717
platform-dirs = "0.3.0"
1818
blake3 = { version = "1.5.4" }
1919
thiserror = "2"

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.6.0"
6+
version = "0.6.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.6.0"
50+
version = "0.6.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.6.0"
5+
version = "0.6.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.6.0", path = "../librashader", features = ["presets", "preprocess", "serde"], default-features = false }
23-
librashader-runtime = { version = "0.6.0", path = "../librashader-runtime"}
22+
librashader = { version = "0.6.1", path = "../librashader", features = ["presets", "preprocess", "serde"], default-features = false }
23+
librashader-runtime = { version = "0.6.1", path = "../librashader-runtime"}
2424
wgpu = { workspace = true, default-features = false, optional = true }
2525
wgpu-types = { workspace = true, optional = true }
2626
anyhow = "1.0.86"

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.6.0"
3+
version = "0.6.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.6.0", features = ["serde"] }
15-
librashader-preprocess = { path = "../librashader-preprocess", version = "0.6.0", features = ["serde"] }
14+
librashader-presets = { path = "../librashader-presets", version = "0.6.1", features = ["serde"] }
15+
librashader-preprocess = { path = "../librashader-preprocess", version = "0.6.1", features = ["serde"] }
1616

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

librashader-preprocess/Cargo.toml

+1-1
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.6.0"
6+
version = "0.6.1"
77
authors = ["Ronny Chan <[email protected]>"]
88
repository = "https://github.com/SnowflakePowered/librashader"
99
readme = "../README.md"

librashader-presets/Cargo.toml

+1-1
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.6.0"
6+
version = "0.6.1"
77
authors = ["Ronny Chan <[email protected]>"]
88
repository = "https://github.com/SnowflakePowered/librashader"
99
readme = "../README.md"

librashader-reflect/Cargo.toml

+4-4
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.6.0"
6+
version = "0.6.1"
77
authors = ["Ronny Chan <[email protected]>"]
88
repository = "https://github.com/SnowflakePowered/librashader"
99
readme = "../README.md"
@@ -19,9 +19,9 @@ thiserror = "2"
1919
bitflags = "2.4.2"
2020

2121
librashader-common = { path = "../librashader-common", version = "0.6.1" }
22-
librashader-preprocess = { path = "../librashader-preprocess", version = "0.6.0" }
23-
librashader-presets = { path = "../librashader-presets", version = "0.6.0" }
24-
librashader-pack = { path = "../librashader-pack", version = "0.6.0" }
22+
librashader-preprocess = { path = "../librashader-preprocess", version = "0.6.1" }
23+
librashader-presets = { path = "../librashader-presets", version = "0.6.1" }
24+
librashader-pack = { path = "../librashader-pack", version = "0.6.1" }
2525

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

librashader-runtime-d3d11/Cargo.toml

+7-7
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.6.0"
6+
version = "0.6.1"
77
authors = ["Ronny Chan <[email protected]>"]
88
repository = "https://github.com/SnowflakePowered/librashader"
99
readme = "../README.md"
@@ -13,12 +13,12 @@ description = "RetroArch shaders for all."
1313

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

2323
thiserror = "2"
2424
bytemuck = "1.12.3"

librashader-runtime-d3d12/Cargo.toml

+7-7
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.6.0"
6+
version = "0.6.1"
77
authors = ["Ronny Chan <[email protected]>"]
88
repository = "https://github.com/SnowflakePowered/librashader"
99
readme = "../README.md"
@@ -13,12 +13,12 @@ description = "RetroArch shaders for all."
1313

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

2323
thiserror = "2"
2424

librashader-runtime-d3d9/Cargo.toml

+7-7
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.6.0"
6+
version = "0.6.1"
77
authors = ["Ronny Chan <[email protected]>"]
88
repository = "https://github.com/SnowflakePowered/librashader"
99
readme = "../README.md"
@@ -13,12 +13,12 @@ description = "RetroArch shaders for all."
1313

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

2323
thiserror = "2"
2424
bytemuck = "1.12.3"

librashader-runtime-gl/Cargo.toml

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

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

1414
[dependencies]
1515
librashader-common = { path = "../librashader-common", features = ["opengl"], version = "0.6.1" }
16-
librashader-presets = { path = "../librashader-presets", version = "0.6.0" }
17-
librashader-preprocess = { path = "../librashader-preprocess", version = "0.6.0" }
18-
librashader-reflect = { path = "../librashader-reflect", version = "0.6.0" }
19-
librashader-pack = { path = "../librashader-pack", version = "0.6.0" }
20-
librashader-runtime = { path = "../librashader-runtime" , version = "0.6.0" }
21-
librashader-cache = { path = "../librashader-cache", version = "0.6.0" }
16+
librashader-presets = { path = "../librashader-presets", version = "0.6.1" }
17+
librashader-preprocess = { path = "../librashader-preprocess", version = "0.6.1" }
18+
librashader-reflect = { path = "../librashader-reflect", version = "0.6.1" }
19+
librashader-pack = { path = "../librashader-pack", version = "0.6.1" }
20+
librashader-runtime = { path = "../librashader-runtime" , version = "0.6.1" }
21+
librashader-cache = { path = "../librashader-cache", version = "0.6.1" }
2222

2323
spirv-cross2 = { workspace = true, features = ["glsl"] }
2424
glow = { workspace = true}

librashader-runtime-mtl/Cargo.toml

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

55
license = "MPL-2.0 OR GPL-3.0-only"
6-
version = "0.6.0"
6+
version = "0.6.1"
77
authors = ["Ronny Chan <[email protected]>"]
88
repository = "https://github.com/SnowflakePowered/librashader"
99
readme = "../README.md"
@@ -15,11 +15,11 @@ description = "RetroArch shaders for all."
1515

1616
[dependencies]
1717
librashader-common = { path = "../librashader-common", features = ["metal"], version = "0.6.1" }
18-
librashader-presets = { path = "../librashader-presets", version = "0.6.0" }
19-
librashader-preprocess = { path = "../librashader-preprocess", version = "0.6.0" }
20-
librashader-pack = { path = "../librashader-pack", version = "0.6.0" }
21-
librashader-reflect = { path = "../librashader-reflect", version = "0.6.0" }
22-
librashader-runtime = { path = "../librashader-runtime" , version = "0.6.0" }
18+
librashader-presets = { path = "../librashader-presets", version = "0.6.1" }
19+
librashader-preprocess = { path = "../librashader-preprocess", version = "0.6.1" }
20+
librashader-pack = { path = "../librashader-pack", version = "0.6.1" }
21+
librashader-reflect = { path = "../librashader-reflect", version = "0.6.1" }
22+
librashader-runtime = { path = "../librashader-runtime" , version = "0.6.1" }
2323

2424
thiserror = "2"
2525
array-concat = "0.5.2"

0 commit comments

Comments
 (0)