Skip to content

Commit fd8d6f6

Browse files
committed
chore: Release
1 parent c5fdffa commit fd8d6f6

File tree

16 files changed

+96
-96
lines changed

16 files changed

+96
-96
lines changed

Cargo.lock

+15-15
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.3.3"
5+
version = "0.4.0"
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.3.3", features = ["serialize"] }
16-
librashader-preprocess = { path = "../librashader-preprocess", version = "0.3.3" }
15+
librashader-reflect = { path = "../librashader-reflect", version = "0.4.0", features = ["serialize"] }
16+
librashader-preprocess = { path = "../librashader-preprocess", version = "0.4.0" }
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.3.3"
6+
version = "0.4.0"
77
authors = ["Ronny Chan <[email protected]>"]
88
repository = "https://github.com/SnowflakePowered/librashader"
99
readme = "../README.md"
@@ -45,7 +45,7 @@ ash = { workspace = true, optional = true }
4545

4646
[dependencies.librashader]
4747
path = "../librashader"
48-
version = "0.3.3"
48+
version = "0.4.0"
4949
default-features = false
5050
features = ["reflect", "presets", "preprocess"]
5151

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

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.3.3"
6+
version = "0.4.0"
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.3.3" }
17+
librashader-common = { path = "../librashader-common", version = "0.4.0" }
1818
encoding_rs = "0.8.31"
1919

2020
[features]

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.3.3"
6+
version = "0.4.0"
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.3.3" }
18+
librashader-common = { path = "../librashader-common", version = "0.4.0" }
1919
num-traits = "0.2"
2020
once_cell = "1"
2121
# we don't need unicode

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.3.3"
6+
version = "0.4.0"
77
authors = ["Ronny Chan <[email protected]>"]
88
repository = "https://github.com/SnowflakePowered/librashader"
99
readme = "../README.md"
@@ -18,9 +18,9 @@ bytemuck = "1.13.0"
1818
thiserror = "1.0.37"
1919
bitflags = "2.4.2"
2020

21-
librashader-common = { path = "../librashader-common", version = "0.3.3" }
22-
librashader-preprocess = { path = "../librashader-preprocess", version = "0.3.3" }
23-
librashader-presets = { path = "../librashader-presets", version = "0.3.3" }
21+
librashader-common = { path = "../librashader-common", version = "0.4.0" }
22+
librashader-preprocess = { path = "../librashader-preprocess", version = "0.4.0" }
23+
librashader-presets = { path = "../librashader-presets", version = "0.4.0" }
2424

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

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

1414
[dependencies]
15-
librashader-common = { path = "../librashader-common", features = ["d3d11"], version = "0.3.3" }
16-
librashader-presets = { path = "../librashader-presets", version = "0.3.3" }
17-
librashader-preprocess = { path = "../librashader-preprocess", version = "0.3.3" }
18-
librashader-reflect = { path = "../librashader-reflect", version = "0.3.3" }
19-
librashader-runtime = { path = "../librashader-runtime", version = "0.3.3" }
20-
librashader-cache = { path = "../librashader-cache", version = "0.3.3", features = ["d3d"] }
15+
librashader-common = { path = "../librashader-common", features = ["d3d11"], version = "0.4.0" }
16+
librashader-presets = { path = "../librashader-presets", version = "0.4.0" }
17+
librashader-preprocess = { path = "../librashader-preprocess", version = "0.4.0" }
18+
librashader-reflect = { path = "../librashader-reflect", version = "0.4.0" }
19+
librashader-runtime = { path = "../librashader-runtime", version = "0.4.0" }
20+
librashader-cache = { path = "../librashader-cache", version = "0.4.0", features = ["d3d"] }
2121

2222
thiserror = "1.0.37"
2323
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.3.3"
6+
version = "0.4.0"
77
authors = ["Ronny Chan <[email protected]>"]
88
repository = "https://github.com/SnowflakePowered/librashader"
99
readme = "../README.md"
@@ -12,12 +12,12 @@ keywords = ["shader", "retroarch", "SPIR-V"]
1212
description = "RetroArch shaders for all."
1313

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

2222
thiserror = "1.0.37"
2323

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.3.3"
6+
version = "0.4.0"
77
authors = ["Ronny Chan <[email protected]>"]
88
repository = "https://github.com/SnowflakePowered/librashader"
99
readme = "../README.md"
@@ -12,12 +12,12 @@ 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.3.3" }
16-
librashader-presets = { path = "../librashader-presets", version = "0.3.3" }
17-
librashader-preprocess = { path = "../librashader-preprocess", version = "0.3.3" }
18-
librashader-reflect = { path = "../librashader-reflect", version = "0.3.3" }
19-
librashader-runtime = { path = "../librashader-runtime", version = "0.3.3" }
20-
librashader-cache = { path = "../librashader-cache", version = "0.3.3", features = ["d3d"] }
15+
librashader-common = { path = "../librashader-common", features = ["d3d9", "d3d11"], version = "0.4.0" }
16+
librashader-presets = { path = "../librashader-presets", version = "0.4.0" }
17+
librashader-preprocess = { path = "../librashader-preprocess", version = "0.4.0" }
18+
librashader-reflect = { path = "../librashader-reflect", version = "0.4.0" }
19+
librashader-runtime = { path = "../librashader-runtime", version = "0.4.0" }
20+
librashader-cache = { path = "../librashader-cache", version = "0.4.0", features = ["d3d"] }
2121

2222
thiserror = "1.0.37"
2323
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.3.3"
6+
version = "0.4.0"
77
authors = ["Ronny Chan <[email protected]>"]
88
repository = "https://github.com/SnowflakePowered/librashader"
99
readme = "../README.md"
@@ -12,12 +12,12 @@ keywords = ["shader", "retroarch", "SPIR-V"]
1212
description = "RetroArch shaders for all."
1313

1414
[dependencies]
15-
librashader-common = { path = "../librashader-common", features = ["opengl"], version = "0.3.3" }
16-
librashader-presets = { path = "../librashader-presets", version = "0.3.3" }
17-
librashader-preprocess = { path = "../librashader-preprocess", version = "0.3.3" }
18-
librashader-reflect = { path = "../librashader-reflect", version = "0.3.3" }
19-
librashader-runtime = { path = "../librashader-runtime" , version = "0.3.3" }
20-
librashader-cache = { path = "../librashader-cache", version = "0.3.3" }
15+
librashader-common = { path = "../librashader-common", features = ["opengl"], version = "0.4.0" }
16+
librashader-presets = { path = "../librashader-presets", version = "0.4.0" }
17+
librashader-preprocess = { path = "../librashader-preprocess", version = "0.4.0" }
18+
librashader-reflect = { path = "../librashader-reflect", version = "0.4.0" }
19+
librashader-runtime = { path = "../librashader-runtime" , version = "0.4.0" }
20+
librashader-cache = { path = "../librashader-cache", version = "0.4.0" }
2121

2222
spirv-cross2 = { workspace = true, features = ["glsl"] }
2323
gl = "0.14.0"

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.3.3"
6+
version = "0.4.0"
77
authors = ["Ronny Chan <[email protected]>"]
88
repository = "https://github.com/SnowflakePowered/librashader"
99
readme = "../README.md"
@@ -14,11 +14,11 @@ description = "RetroArch shaders for all."
1414
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1515

1616
[dependencies]
17-
librashader-common = { path = "../librashader-common", features = ["metal"], version = "0.3.3" }
18-
librashader-presets = { path = "../librashader-presets", version = "0.3.3" }
19-
librashader-preprocess = { path = "../librashader-preprocess", version = "0.3.3" }
20-
librashader-reflect = { path = "../librashader-reflect", version = "0.3.3" }
21-
librashader-runtime = { path = "../librashader-runtime" , version = "0.3.3" }
17+
librashader-common = { path = "../librashader-common", features = ["metal"], version = "0.4.0" }
18+
librashader-presets = { path = "../librashader-presets", version = "0.4.0" }
19+
librashader-preprocess = { path = "../librashader-preprocess", version = "0.4.0" }
20+
librashader-reflect = { path = "../librashader-reflect", version = "0.4.0" }
21+
librashader-runtime = { path = "../librashader-runtime" , version = "0.4.0" }
2222

2323
thiserror = "1.0"
2424
array-concat = "0.5.2"

0 commit comments

Comments
 (0)