Skip to content

Commit

Permalink
Bump all versions (#123)
Browse files Browse the repository at this point in the history
  • Loading branch information
PENGUINLIONG authored Dec 27, 2023
1 parent 7960b08 commit 4a7c517
Show file tree
Hide file tree
Showing 8 changed files with 21 additions and 16 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Change Log

## v1.1.1

- Better readme.
- Support reading from stdin in `spirq-as` and `spirq-dis`.

## v1.1.0

- Identify depth images via `SampledImageType`.
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.

2 changes: 1 addition & 1 deletion shader-reflect/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.0.1", path = "../spirq" }
spirq = { version = "1.1.1", 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-as/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spirq-as"
version = "0.1.1"
version = "0.1.2"
authors = ["PENGUINLIONG <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand All @@ -19,5 +19,5 @@ maintenance = { status = "actively-developed" }

[dependencies]
anyhow = "1.0"
spirq-spvasm = { version = "0.1.1", path = "../spirq-spvasm" }
spirq-spvasm = { version = "0.1.2", path = "../spirq-spvasm" }
clap = { version = "4.0.6", features = ["derive"] }
2 changes: 1 addition & 1 deletion spirq-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spirq-core"
version = "1.0.1"
version = "1.0.2"
authors = ["PENGUINLIONG <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions spirq-dis/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spirq-dis"
version = "0.1.1"
version = "0.1.2"
authors = ["PENGUINLIONG <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand All @@ -19,5 +19,5 @@ maintenance = { status = "actively-developed" }

[dependencies]
anyhow = "1.0"
spirq-spvasm = { version = "0.1.1", path = "../spirq-spvasm" }
spirq-spvasm = { version = "0.1.2", path = "../spirq-spvasm" }
clap = { version = "4.0.6", features = ["derive"] }
6 changes: 3 additions & 3 deletions spirq-spvasm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spirq-spvasm"
version = "0.1.1"
version = "0.1.2"
authors = ["PENGUINLIONG <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand All @@ -20,8 +20,8 @@ maintenance = { status = "actively-developed" }
[dependencies]
anyhow = "1.0"
num-traits = "0.2"
spirq-core = { version = "1.0.1", path = "../spirq-core" }
spirq = { version = "1.1.0", path = "../spirq"}
spirq-core = { version = "1.0.2", path = "../spirq-core" }
spirq = { version = "1.1.1", path = "../spirq"}
half = { version = "2.3", features = ["num-traits"] }

[dev-dependencies]
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.1.0"
version = "1.1.1"
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-core = { version = "1.0.0", path = "../spirq-core" }
spirq-core = { version = "1.0.2", path = "../spirq-core" }
num-traits = "0.2"
num-derive = "0.4"
fnv = "1.0.7"
Expand Down

0 comments on commit 4a7c517

Please sign in to comment.