Skip to content

Commit

Permalink
chore: Release
Browse files Browse the repository at this point in the history
  • Loading branch information
chyyran committed Nov 20, 2024
1 parent c950a89 commit 5847a40
Show file tree
Hide file tree
Showing 18 changed files with 114 additions and 114 deletions.
34 changes: 17 additions & 17 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions librashader-cache/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "librashader-cache"
edition = "2021"
license = "MPL-2.0 OR GPL-3.0-only"
version = "0.6.1"
version = "0.6.2"
authors = ["Ronny Chan <ronny@ronnychan.ca>"]
repository = "https://github.com/SnowflakePowered/librashader"
readme = "../README.md"
Expand All @@ -12,8 +12,8 @@ description = "RetroArch shaders for all."

[dependencies]
serde = { version = "1.0" }
librashader-reflect = { path = "../librashader-reflect", version = "0.6.1", features = ["serde"] }
librashader-preprocess = { path = "../librashader-preprocess", version = "0.6.1" }
librashader-reflect = { path = "../librashader-reflect", version = "0.6.2", features = ["serde"] }
librashader-preprocess = { path = "../librashader-preprocess", version = "0.6.2" }
platform-dirs = "0.3.0"
blake3 = { version = "1.5.4" }
thiserror = "2"
Expand Down
4 changes: 2 additions & 2 deletions librashader-capi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "librashader-capi"
edition = "2021"

license = "MPL-2.0 OR GPL-3.0-only"
version = "0.6.1"
version = "0.6.2"
authors = ["Ronny Chan <ronny@ronnychan.ca>"]
repository = "https://github.com/SnowflakePowered/librashader"
readme = "../README.md"
Expand Down Expand Up @@ -47,7 +47,7 @@ ash = { workspace = true, optional = true }

[dependencies.librashader]
path = "../librashader"
version = "0.6.1"
version = "0.6.2"
default-features = false
features = ["reflect", "presets", "preprocess"]

Expand Down
6 changes: 3 additions & 3 deletions librashader-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "librashader-cli"
edition = "2021"
license = "MPL-2.0 OR GPL-3.0-only"
version = "0.6.1"
version = "0.6.2"
authors = ["Ronny Chan <ronny@ronnychan.ca>"]
repository = "https://github.com/SnowflakePowered/librashader"
readme = "../README.md"
Expand All @@ -19,8 +19,8 @@ name = "librashader-cli"
path = "src/cli/main.rs"

[dependencies]
librashader = { version = "0.6.1", path = "../librashader", features = ["presets", "preprocess", "serde"], default-features = false }
librashader-runtime = { version = "0.6.1", path = "../librashader-runtime"}
librashader = { version = "0.6.2", path = "../librashader", features = ["presets", "preprocess", "serde"], default-features = false }
librashader-runtime = { version = "0.6.2", path = "../librashader-runtime"}
wgpu = { workspace = true, default-features = false, optional = true }
wgpu-types = { workspace = true, optional = true }
anyhow = "1.0.86"
Expand Down
2 changes: 1 addition & 1 deletion librashader-common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "librashader-common"
edition = "2021"

license = "MPL-2.0 OR GPL-3.0-only"
version = "0.6.1"
version = "0.6.2"
authors = ["Ronny Chan <ronny@ronnychan.ca>"]
repository = "https://github.com/SnowflakePowered/librashader"
readme = "../README.md"
Expand Down
6 changes: 3 additions & 3 deletions librashader-pack/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "librashader-pack"
version = "0.6.1"
version = "0.6.2"
edition = "2021"
license = "MPL-2.0 OR GPL-3.0-only"
authors = ["Ronny Chan <ronny@ronnychan.ca>"]
Expand All @@ -11,8 +11,8 @@ keywords = ["shader", "retroarch", "SPIR-V"]
description = "RetroArch shaders for all."

[dependencies]
librashader-presets = { path = "../librashader-presets", version = "0.6.1", features = ["serde"] }
librashader-preprocess = { path = "../librashader-preprocess", version = "0.6.1", features = ["serde"] }
librashader-presets = { path = "../librashader-presets", version = "0.6.2", features = ["serde"] }
librashader-preprocess = { path = "../librashader-preprocess", version = "0.6.2", features = ["serde"] }

thiserror = "2"
serde = { version = "1.0", features = ["derive"], optional = true }
Expand Down
4 changes: 2 additions & 2 deletions librashader-preprocess/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "librashader-preprocess"
edition = "2021"

license = "MPL-2.0 OR GPL-3.0-only"
version = "0.6.1"
version = "0.6.2"
authors = ["Ronny Chan <ronny@ronnychan.ca>"]
repository = "https://github.com/SnowflakePowered/librashader"
readme = "../README.md"
Expand All @@ -14,7 +14,7 @@ description = "RetroArch shaders for all."
[dependencies]
thiserror = "2"
nom = "7.1.1"
librashader-common = { path = "../librashader-common", version = "0.6.1" }
librashader-common = { path = "../librashader-common", version = "0.6.2" }
encoding_rs = "0.8.31"
serde = { version = "1.0", optional = true }

Expand Down
4 changes: 2 additions & 2 deletions librashader-presets/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "librashader-presets"
edition = "2021"

license = "MPL-2.0 OR GPL-3.0-only"
version = "0.6.1"
version = "0.6.2"
authors = ["Ronny Chan <ronny@ronnychan.ca>"]
repository = "https://github.com/SnowflakePowered/librashader"
readme = "../README.md"
Expand All @@ -15,7 +15,7 @@ description = "RetroArch shaders for all."
thiserror = "2"
nom = "7.1.1"
nom_locate = "4.0.0"
librashader-common = { path = "../librashader-common", version = "0.6.1" }
librashader-common = { path = "../librashader-common", version = "0.6.2" }
num-traits = "0.2"
once_cell = "1"
# we don't need unicode
Expand Down
10 changes: 5 additions & 5 deletions librashader-reflect/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "librashader-reflect"
edition = "2021"

license = "MPL-2.0 OR GPL-3.0-only"
version = "0.6.1"
version = "0.6.2"
authors = ["Ronny Chan <ronny@ronnychan.ca>"]
repository = "https://github.com/SnowflakePowered/librashader"
readme = "../README.md"
Expand All @@ -18,10 +18,10 @@ bytemuck = "1.13.0"
thiserror = "2"
bitflags = "2.4.2"

librashader-common = { path = "../librashader-common", version = "0.6.1" }
librashader-preprocess = { path = "../librashader-preprocess", version = "0.6.1" }
librashader-presets = { path = "../librashader-presets", version = "0.6.1" }
librashader-pack = { path = "../librashader-pack", version = "0.6.1" }
librashader-common = { path = "../librashader-common", version = "0.6.2" }
librashader-preprocess = { path = "../librashader-preprocess", version = "0.6.2" }
librashader-presets = { path = "../librashader-presets", version = "0.6.2" }
librashader-pack = { path = "../librashader-pack", version = "0.6.2" }

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

Expand Down
16 changes: 8 additions & 8 deletions librashader-runtime-d3d11/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "librashader-runtime-d3d11"
edition = "2021"

license = "MPL-2.0 OR GPL-3.0-only"
version = "0.6.1"
version = "0.6.2"
authors = ["Ronny Chan <ronny@ronnychan.ca>"]
repository = "https://github.com/SnowflakePowered/librashader"
readme = "../README.md"
Expand All @@ -12,13 +12,13 @@ keywords = ["shader", "retroarch", "SPIR-V"]
description = "RetroArch shaders for all."

[dependencies]
librashader-common = { path = "../librashader-common", features = ["d3d11"], version = "0.6.1" }
librashader-presets = { path = "../librashader-presets", version = "0.6.1" }
librashader-preprocess = { path = "../librashader-preprocess", version = "0.6.1" }
librashader-pack = { path = "../librashader-pack", version = "0.6.1" }
librashader-reflect = { path = "../librashader-reflect", version = "0.6.1" }
librashader-runtime = { path = "../librashader-runtime", version = "0.6.1" }
librashader-cache = { path = "../librashader-cache", version = "0.6.1", features = ["d3d"] }
librashader-common = { path = "../librashader-common", features = ["d3d11"], version = "0.6.2" }
librashader-presets = { path = "../librashader-presets", version = "0.6.2" }
librashader-preprocess = { path = "../librashader-preprocess", version = "0.6.2" }
librashader-pack = { path = "../librashader-pack", version = "0.6.2" }
librashader-reflect = { path = "../librashader-reflect", version = "0.6.2" }
librashader-runtime = { path = "../librashader-runtime", version = "0.6.2" }
librashader-cache = { path = "../librashader-cache", version = "0.6.2", features = ["d3d"] }

thiserror = "2"
bytemuck = "1.12.3"
Expand Down
16 changes: 8 additions & 8 deletions librashader-runtime-d3d12/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "librashader-runtime-d3d12"
edition = "2021"

license = "MPL-2.0 OR GPL-3.0-only"
version = "0.6.1"
version = "0.6.2"
authors = ["Ronny Chan <ronny@ronnychan.ca>"]
repository = "https://github.com/SnowflakePowered/librashader"
readme = "../README.md"
Expand All @@ -12,13 +12,13 @@ keywords = ["shader", "retroarch", "SPIR-V"]
description = "RetroArch shaders for all."

[dependencies]
librashader-common = { path = "../librashader-common", features = ["d3d12"], version = "0.6.1" }
librashader-presets = { path = "../librashader-presets", version = "0.6.1" }
librashader-preprocess = { path = "../librashader-preprocess", version = "0.6.1" }
librashader-reflect = { path = "../librashader-reflect", version = "0.6.1", features = ["dxil"] }
librashader-pack = { path = "../librashader-pack", version = "0.6.1" }
librashader-runtime = { path = "../librashader-runtime", version = "0.6.1" }
librashader-cache = { path = "../librashader-cache", version = "0.6.1", features = ["d3d"] }
librashader-common = { path = "../librashader-common", features = ["d3d12"], version = "0.6.2" }
librashader-presets = { path = "../librashader-presets", version = "0.6.2" }
librashader-preprocess = { path = "../librashader-preprocess", version = "0.6.2" }
librashader-reflect = { path = "../librashader-reflect", version = "0.6.2", features = ["dxil"] }
librashader-pack = { path = "../librashader-pack", version = "0.6.2" }
librashader-runtime = { path = "../librashader-runtime", version = "0.6.2" }
librashader-cache = { path = "../librashader-cache", version = "0.6.2", features = ["d3d"] }

thiserror = "2"

Expand Down
16 changes: 8 additions & 8 deletions librashader-runtime-d3d9/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "librashader-runtime-d3d9"
edition = "2021"

license = "MPL-2.0 OR GPL-3.0-only"
version = "0.6.1"
version = "0.6.2"
authors = ["Ronny Chan <ronny@ronnychan.ca>"]
repository = "https://github.com/SnowflakePowered/librashader"
readme = "../README.md"
Expand All @@ -12,13 +12,13 @@ keywords = ["shader", "retroarch", "SPIR-V"]
description = "RetroArch shaders for all."

[dependencies]
librashader-common = { path = "../librashader-common", features = ["d3d9", "d3d11"], version = "0.6.1" }
librashader-presets = { path = "../librashader-presets", version = "0.6.1" }
librashader-preprocess = { path = "../librashader-preprocess", version = "0.6.1" }
librashader-reflect = { path = "../librashader-reflect", version = "0.6.1" }
librashader-pack = { path = "../librashader-pack", version = "0.6.1" }
librashader-runtime = { path = "../librashader-runtime", version = "0.6.1" }
librashader-cache = { path = "../librashader-cache", version = "0.6.1", features = ["d3d"] }
librashader-common = { path = "../librashader-common", features = ["d3d9", "d3d11"], version = "0.6.2" }
librashader-presets = { path = "../librashader-presets", version = "0.6.2" }
librashader-preprocess = { path = "../librashader-preprocess", version = "0.6.2" }
librashader-reflect = { path = "../librashader-reflect", version = "0.6.2" }
librashader-pack = { path = "../librashader-pack", version = "0.6.2" }
librashader-runtime = { path = "../librashader-runtime", version = "0.6.2" }
librashader-cache = { path = "../librashader-cache", version = "0.6.2", features = ["d3d"] }

thiserror = "2"
bytemuck = "1.12.3"
Expand Down
Loading

0 comments on commit 5847a40

Please sign in to comment.