Skip to content

Commit

Permalink
Bump version to v1.2.3 (#142)
Browse files Browse the repository at this point in the history
* Bump version to v1.2.3

* More tolerant version control in shader-reflect
  • Loading branch information
PENGUINLIONG authored Nov 28, 2024
1 parent 65e75d4 commit bde12d9
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 9 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
10 changes: 5 additions & 5 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions shader-reflect/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "shader-reflect"
version = "0.2.9"
version = "0.2.10"
authors = ["PENGUINLIONG <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand All @@ -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"] }
Expand Down
4 changes: 2 additions & 2 deletions spirq/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spirq"
version = "1.2.2"
version = "1.2.3"
authors = ["PENGUINLIONG <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand All @@ -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"
Expand Down

0 comments on commit bde12d9

Please sign in to comment.