diff --git a/CHANGELOG.md b/CHANGELOG.md index cfdd70d..9cba8af 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log +## v1.2.3 + +- Support more data types in Evaluator. (https://github.com/PENGUINLIONG/spq-rs/pull/4) + ## v1.2.2 - Support `OpIEqual` and `OpINotEqual` in Evaluator. (https://github.com/PENGUINLIONG/spq-rs/pull/1) diff --git a/Cargo.lock b/Cargo.lock index 6413321..a2f49e6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -331,13 +331,13 @@ dependencies = [ [[package]] name = "shader-reflect" -version = "0.2.9" +version = "0.2.10" dependencies = [ "clap", "serde", "serde_json", "shaderc", - "spirq 1.2.2", + "spirq 1.2.3", ] [[package]] @@ -375,7 +375,7 @@ dependencies = [ [[package]] name = "spirq" -version = "1.2.2" +version = "1.2.3" dependencies = [ "byteorder", "bytes", @@ -426,9 +426,9 @@ dependencies = [ [[package]] name = "spq-core" -version = "1.0.5" +version = "1.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "605fb8ae60065f7a9d21d1ae1e89f7a5ff93ca7755df88ada937ac06ba0a0a43" +checksum = "54479dd334e2bb25e246d73d09bc1e130c53d1a7ac6be8f95b0a75fe88fd8f45" dependencies = [ "anyhow", "bytemuck", diff --git a/shader-reflect/Cargo.toml b/shader-reflect/Cargo.toml index 0a10af6..7593ce4 100644 --- a/shader-reflect/Cargo.toml +++ b/shader-reflect/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "shader-reflect" -version = "0.2.9" +version = "0.2.10" authors = ["PENGUINLIONG "] edition = "2018" license = "MIT OR Apache-2.0" @@ -18,7 +18,7 @@ maintenance = { status = "actively-developed" } # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -spirq = { version = "1.2.2", path = "../spirq" } +spirq = { version = "1.2", path = "../spirq" } clap = { version = "4.0.6", features = ["derive"] } serde = "1.0" serde_json = { version = "1.0", features = ["preserve_order"] } diff --git a/spirq/Cargo.toml b/spirq/Cargo.toml index 5e9ab66..6c49037 100644 --- a/spirq/Cargo.toml +++ b/spirq/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "spirq" -version = "1.2.2" +version = "1.2.3" authors = ["PENGUINLIONG "] edition = "2018" license = "MIT OR Apache-2.0" @@ -18,7 +18,7 @@ maintenance = { status = "actively-developed" } # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -spq-core = "1.0.5" +spq-core = "1.0.6" num-traits = "0.2" num-derive = "0.4" fnv = "1.0.7"