Skip to content

Commit eb13c30

Browse files
authored
chore: release
1 parent 492c8e4 commit eb13c30

File tree

9 files changed

+25
-25
lines changed

9 files changed

+25
-25
lines changed

Cargo.lock

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

hugr-cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hugr-cli"
3-
version = "0.22.1"
3+
version = "0.22.2"
44
edition = { workspace = true }
55
rust-version = { workspace = true }
66
license = { workspace = true }
@@ -19,7 +19,7 @@ bench = false
1919
clap = { workspace = true, features = ["derive", "cargo"] }
2020
clap-verbosity-flag.workspace = true
2121
derive_more = { workspace = true, features = ["display", "error", "from"] }
22-
hugr = { path = "../hugr", version = "0.22.1" }
22+
hugr = { path = "../hugr", version = "0.22.2" }
2323
serde_json.workspace = true
2424
clio = { workspace = true, features = ["clap-parse"] }
2525
anyhow.workspace = true

hugr-core/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hugr-core"
3-
version = "0.22.1"
3+
version = "0.22.2"
44
edition = { workspace = true }
55
rust-version = { workspace = true }
66

@@ -28,7 +28,7 @@ bench = false
2828
name = "model"
2929

3030
[dependencies]
31-
hugr-model = { version = "0.22.1", path = "../hugr-model" }
31+
hugr-model = { version = "0.22.2", path = "../hugr-model" }
3232

3333
cgmath = { workspace = true, features = ["serde"] }
3434
delegate = { workspace = true }

hugr-llvm/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hugr-llvm"
3-
version = "0.22.1"
3+
version = "0.22.2"
44
description = "A general and extensible crate for lowering HUGRs into LLVM IR"
55

66
edition.workspace = true
@@ -26,7 +26,7 @@ workspace = true
2626

2727
[dependencies]
2828
inkwell = { version = "0.6.0", default-features = false }
29-
hugr-core = { path = "../hugr-core", version = "0.22.1" }
29+
hugr-core = { path = "../hugr-core", version = "0.22.2" }
3030
anyhow.workspace = true
3131
itertools.workspace = true
3232
delegate.workspace = true

hugr-model/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hugr-model"
3-
version = "0.22.1"
3+
version = "0.22.2"
44
readme = "README.md"
55
documentation = "https://docs.rs/hugr-model/"
66
description = "Data model for Quantinuum's HUGR intermediate representation"

hugr-passes/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hugr-passes"
3-
version = "0.22.1"
3+
version = "0.22.2"
44
edition = { workspace = true }
55
rust-version = { workspace = true }
66
license = { workspace = true }
@@ -19,7 +19,7 @@ workspace = true
1919
bench = false
2020

2121
[dependencies]
22-
hugr-core = { path = "../hugr-core", version = "0.22.1" }
22+
hugr-core = { path = "../hugr-core", version = "0.22.2" }
2323
portgraph = { workspace = true }
2424
ascent = { version = "0.8.0" }
2525
derive_more = { workspace = true, features = ["display", "error", "from"] }

hugr-persistent/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hugr-persistent"
3-
version = "0.2.1"
3+
version = "0.2.2"
44
edition = { workspace = true }
55
rust-version = { workspace = true }
66
license = { workspace = true }
@@ -16,7 +16,7 @@ categories = ["compilers"]
1616
name = "persistent_walker_example"
1717

1818
[dependencies]
19-
hugr-core = { path = "../hugr-core", version = "0.22.1" }
19+
hugr-core = { path = "../hugr-core", version = "0.22.2" }
2020

2121
derive_more = { workspace = true, features = ["display", "error", "from"] }
2222
delegate.workspace = true

hugr-py/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ bench = false
2121

2222
[dependencies]
2323
bumpalo = { workspace = true, features = ["collections"] }
24-
hugr-model = { version = "0.22.1", path = "../hugr-model", features = ["pyo3"] }
24+
hugr-model = { version = "0.22.2", path = "../hugr-model", features = ["pyo3"] }
2525
paste.workspace = true
2626
pyo3 = { workspace = true, features = ["extension-module", "abi3-py310"] }

hugr/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hugr"
3-
version = "0.22.1"
3+
version = "0.22.2"
44
edition = { workspace = true }
55
rust-version = { workspace = true }
66

@@ -31,11 +31,11 @@ zstd = ["hugr-core/zstd"]
3131
persistent_unstable = ["hugr-persistent"]
3232

3333
[dependencies]
34-
hugr-model = { path = "../hugr-model", version = "0.22.1" }
35-
hugr-core = { path = "../hugr-core", version = "0.22.1" }
36-
hugr-passes = { path = "../hugr-passes", version = "0.22.1" }
37-
hugr-llvm = { path = "../hugr-llvm", version = "0.22.1", optional = true }
38-
hugr-persistent = { path = "../hugr-persistent", version = "0.2.1", optional = true }
34+
hugr-model = { path = "../hugr-model", version = "0.22.2" }
35+
hugr-core = { path = "../hugr-core", version = "0.22.2" }
36+
hugr-passes = { path = "../hugr-passes", version = "0.22.2" }
37+
hugr-llvm = { path = "../hugr-llvm", version = "0.22.2", optional = true }
38+
hugr-persistent = { path = "../hugr-persistent", version = "0.2.2", optional = true }
3939

4040
[dev-dependencies]
4141
lazy_static = { workspace = true }

0 commit comments

Comments
 (0)