Skip to content

Commit

Permalink
chore: Release
Browse files Browse the repository at this point in the history
  • Loading branch information
chyyran committed Feb 17, 2024
1 parent fe84e6a commit a8ae407
Show file tree
Hide file tree
Showing 15 changed files with 86 additions and 86 deletions.
28 changes: 14 additions & 14 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
Expand Up @@ -2,7 +2,7 @@
name = "librashader-cache"
edition = "2021"
license = "MPL-2.0 OR GPL-3.0-only"
version = "0.2.0"
version = "0.2.1"
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.2.0", features = ["serialize"] }
librashader-preprocess = { path = "../librashader-preprocess", version = "0.2.0" }
librashader-reflect = { path = "../librashader-reflect", version = "0.2.1", features = ["serialize"] }
librashader-preprocess = { path = "../librashader-preprocess", version = "0.2.1" }
platform-dirs = "0.3.0"
blake3 = { version = "1.3.3" }
thiserror = "1.0.38"
Expand Down
4 changes: 2 additions & 2 deletions librashader-capi/Cargo.toml
Expand Up @@ -3,7 +3,7 @@ name = "librashader-capi"
edition = "2021"

license = "MPL-2.0 OR GPL-3.0-only"
version = "0.2.0"
version = "0.2.1"
authors = ["Ronny Chan <ronny@ronnychan.ca>"]
repository = "https://github.com/SnowflakePowered/librashader"
readme = "../README.md"
Expand Down Expand Up @@ -40,7 +40,7 @@ sptr = "0.3.2"

[dependencies.librashader]
path = "../librashader"
version = "0.2.0"
version = "0.2.1"
default-features = false
features = ["presets", "preprocess"]

Expand Down
2 changes: 1 addition & 1 deletion librashader-common/Cargo.toml
Expand Up @@ -3,7 +3,7 @@ name = "librashader-common"
edition = "2021"

license = "MPL-2.0 OR GPL-3.0-only"
version = "0.2.0"
version = "0.2.1"
authors = ["Ronny Chan <ronny@ronnychan.ca>"]
repository = "https://github.com/SnowflakePowered/librashader"
readme = "../README.md"
Expand Down
4 changes: 2 additions & 2 deletions librashader-preprocess/Cargo.toml
Expand Up @@ -3,7 +3,7 @@ name = "librashader-preprocess"
edition = "2021"

license = "MPL-2.0 OR GPL-3.0-only"
version = "0.2.0"
version = "0.2.1"
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 = "1.0.37"
nom = "7.1.1"
librashader-common = { path = "../librashader-common", version = "0.2.0" }
librashader-common = { path = "../librashader-common", version = "0.2.1" }
encoding_rs = "0.8.31"

[features]
Expand Down
4 changes: 2 additions & 2 deletions librashader-presets/Cargo.toml
Expand Up @@ -3,7 +3,7 @@ name = "librashader-presets"
edition = "2021"

license = "MPL-2.0 OR GPL-3.0-only"
version = "0.2.0"
version = "0.2.1"
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 = "1.0.37"
nom = "7.1.1"
nom_locate = "4.0.0"
librashader-common = { path = "../librashader-common", version = "0.2.0" }
librashader-common = { path = "../librashader-common", version = "0.2.1" }
num-traits = "0.2"
once_cell = "1"
# we don't need unicode
Expand Down
8 changes: 4 additions & 4 deletions librashader-reflect/Cargo.toml
Expand Up @@ -3,7 +3,7 @@ name = "librashader-reflect"
edition = "2021"

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

librashader-common = { path = "../librashader-common", version = "0.2.0" }
librashader-preprocess = { path = "../librashader-preprocess", version = "0.2.0" }
librashader-presets = { path = "../librashader-presets", version = "0.2.0" }
librashader-common = { path = "../librashader-common", version = "0.2.1" }
librashader-preprocess = { path = "../librashader-preprocess", version = "0.2.1" }
librashader-presets = { path = "../librashader-presets", version = "0.2.1" }

spirv_cross = { package = "librashader-spirv-cross", version = "0.25.1", optional = true }
spirv-linker = "0.1.0"
Expand Down
14 changes: 7 additions & 7 deletions librashader-runtime-d3d11/Cargo.toml
Expand Up @@ -3,7 +3,7 @@ name = "librashader-runtime-d3d11"
edition = "2021"

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

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

thiserror = "1.0.37"
bytemuck = "1.12.3"
Expand Down
14 changes: 7 additions & 7 deletions librashader-runtime-d3d12/Cargo.toml
Expand Up @@ -3,7 +3,7 @@ name = "librashader-runtime-d3d12"
edition = "2021"

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

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

thiserror = "1.0.37"
parking_lot = "0.12.1"
Expand Down
14 changes: 7 additions & 7 deletions librashader-runtime-gl/Cargo.toml
Expand Up @@ -3,7 +3,7 @@ name = "librashader-runtime-gl"
edition = "2021"

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

[dependencies]
librashader-common = { path = "../librashader-common", features = ["opengl"], version = "0.2.0" }
librashader-presets = { path = "../librashader-presets", version = "0.2.0" }
librashader-preprocess = { path = "../librashader-preprocess", version = "0.2.0" }
librashader-reflect = { path = "../librashader-reflect", version = "0.2.0" }
librashader-runtime = { path = "../librashader-runtime" , version = "0.2.0" }
librashader-cache = { path = "../librashader-cache", version = "0.2.0" }
librashader-common = { path = "../librashader-common", features = ["opengl"], version = "0.2.1" }
librashader-presets = { path = "../librashader-presets", version = "0.2.1" }
librashader-preprocess = { path = "../librashader-preprocess", version = "0.2.1" }
librashader-reflect = { path = "../librashader-reflect", version = "0.2.1" }
librashader-runtime = { path = "../librashader-runtime" , version = "0.2.1" }
librashader-cache = { path = "../librashader-cache", version = "0.2.1" }
spirv_cross = { package = "librashader-spirv-cross", version = "0.25.1" }

gl = "0.14.0"
Expand Down
12 changes: 6 additions & 6 deletions librashader-runtime-mtl/Cargo.toml
Expand Up @@ -3,7 +3,7 @@ name = "librashader-runtime-mtl"
edition = "2021"

license = "MPL-2.0 OR GPL-3.0-only"
version = "0.2.0"
version = "0.2.1"
authors = ["Ronny Chan <ronny@ronnychan.ca>"]
repository = "https://github.com/SnowflakePowered/librashader"
readme = "../README.md"
Expand All @@ -14,11 +14,11 @@ description = "RetroArch shaders for all."
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
librashader-common = { path = "../librashader-common", features = ["metal"], version = "0.2.0" }
librashader-presets = { path = "../librashader-presets", version = "0.2.0" }
librashader-preprocess = { path = "../librashader-preprocess", version = "0.2.0" }
librashader-reflect = { path = "../librashader-reflect", version = "0.2.0" }
librashader-runtime = { path = "../librashader-runtime" , version = "0.2.0" }
librashader-common = { path = "../librashader-common", features = ["metal"], version = "0.2.1" }
librashader-presets = { path = "../librashader-presets", version = "0.2.1" }
librashader-preprocess = { path = "../librashader-preprocess", version = "0.2.1" }
librashader-reflect = { path = "../librashader-reflect", version = "0.2.1" }
librashader-runtime = { path = "../librashader-runtime" , version = "0.2.1" }

thiserror = "1.0"
array-concat = "0.5.2"
Expand Down
14 changes: 7 additions & 7 deletions librashader-runtime-vk/Cargo.toml
Expand Up @@ -3,7 +3,7 @@ name = "librashader-runtime-vk"
edition = "2021"

license = "MPL-2.0 OR GPL-3.0-only"
version = "0.2.0"
version = "0.2.1"
authors = ["Ronny Chan <ronny@ronnychan.ca>"]
repository = "https://github.com/SnowflakePowered/librashader"
readme = "../README.md"
Expand All @@ -14,12 +14,12 @@ description = "RetroArch shaders for all."
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
librashader-common = { path = "../librashader-common", features = ["vulkan"], version = "0.2.0" }
librashader-presets = { path = "../librashader-presets", version = "0.2.0" }
librashader-preprocess = { path = "../librashader-preprocess", version = "0.2.0" }
librashader-reflect = { path = "../librashader-reflect", version = "0.2.0" }
librashader-runtime = { path = "../librashader-runtime" , version = "0.2.0" }
librashader-cache = { path = "../librashader-cache", version = "0.2.0" }
librashader-common = { path = "../librashader-common", features = ["vulkan"], version = "0.2.1" }
librashader-presets = { path = "../librashader-presets", version = "0.2.1" }
librashader-preprocess = { path = "../librashader-preprocess", version = "0.2.1" }
librashader-reflect = { path = "../librashader-reflect", version = "0.2.1" }
librashader-runtime = { path = "../librashader-runtime" , version = "0.2.1" }
librashader-cache = { path = "../librashader-cache", version = "0.2.1" }

bytemuck = { version = "1.12.3", features = ["derive"] }
thiserror = "1.0.37"
Expand Down
12 changes: 6 additions & 6 deletions librashader-runtime-wgpu/Cargo.toml
Expand Up @@ -2,7 +2,7 @@
name = "librashader-runtime-wgpu"
edition = "2021"

version = "0.2.0"
version = "0.2.1"
license = "MPL-2.0 OR GPL-3.0-only"
authors = ["Ronny Chan <ronny@ronnychan.ca>"]
repository = "https://github.com/SnowflakePowered/librashader"
Expand All @@ -14,11 +14,11 @@ description = "RetroArch shaders for all."
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
librashader-common = { path = "../librashader-common", features = ["wgpu"], version = "0.2.0" }
librashader-presets = { path = "../librashader-presets", version = "0.2.0" }
librashader-preprocess = { path = "../librashader-preprocess", version = "0.2.0" }
librashader-reflect = { path = "../librashader-reflect", version = "0.2.0", features = ["wgsl"], default-features = false }
librashader-runtime = { path = "../librashader-runtime" , version = "0.2.0" }
librashader-common = { path = "../librashader-common", features = ["wgpu"], version = "0.2.1" }
librashader-presets = { path = "../librashader-presets", version = "0.2.1" }
librashader-preprocess = { path = "../librashader-preprocess", version = "0.2.1" }
librashader-reflect = { path = "../librashader-reflect", version = "0.2.1", features = ["wgsl"], default-features = false }
librashader-runtime = { path = "../librashader-runtime" , version = "0.2.1" }

wgpu = { version = "0.19.0", default-features = false, features = ["wgsl"] }
image = "0.24.7"
Expand Down

0 comments on commit a8ae407

Please sign in to comment.