Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions Cargo.lock

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

5 changes: 5 additions & 0 deletions hugr-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## [0.22.2](https://github.com/CQCL/hugr/compare/hugr-cli-v0.22.1...hugr-cli-v0.22.2) - 2025-08-06

### New Features

- *(cli)* Deprecate HugrInputArgs::get_hugr ([#2506](https://github.com/CQCL/hugr/pull/2506))

## [0.22.0](https://github.com/CQCL/hugr/compare/hugr-cli-v0.21.0...hugr-cli-v0.22.0) - 2025-07-24
Comment on lines +3 to 9
Copy link
Collaborator

@cqc-alec cqc-alec Aug 6, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why are the changelogs missing 0.22.1? Is it because there wasn't a 0.22.1 release for these crates?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

that's a great question! @aborgna-q ?

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The crate versions are updated in lock-step, but there weren't any changes for hugr-cli 0.22.1 so its changelog didn't get updated.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Then the comparison URL should be from v0.22.0 not v0.22.1?

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The tag does exist since the crate was released.
Between 0.21.0 and 0.21.1 there weren't any commits affecting hugr-cli, so they can be ignored.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OK it's probably fine, but when I go to the URL the page says "We couldn’t figure out how to compare these references, do they point to valid commits?".

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The new tag doesn't exist yet, it'll be created after the merge

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Right, thanks!


Expand Down
4 changes: 2 additions & 2 deletions hugr-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hugr-cli"
version = "0.22.1"
version = "0.22.2"
edition = { workspace = true }
rust-version = { workspace = true }
license = { workspace = true }
Expand All @@ -19,7 +19,7 @@ bench = false
clap = { workspace = true, features = ["derive", "cargo"] }
clap-verbosity-flag.workspace = true
derive_more = { workspace = true, features = ["display", "error", "from"] }
hugr = { path = "../hugr", version = "0.22.1" }
hugr = { path = "../hugr", version = "0.22.2" }
serde_json.workspace = true
clio = { workspace = true, features = ["clap-parse"] }
anyhow.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions hugr-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## [0.22.2](https://github.com/CQCL/hugr/compare/hugr-core-v0.22.1...hugr-core-v0.22.2) - 2025-08-06

### New Features

- Type of constants in `core` `Term`s. ([#2411](https://github.com/CQCL/hugr/pull/2411))
- Support LineConvexChecker ([#2487](https://github.com/CQCL/hugr/pull/2487))

## [0.22.0](https://github.com/CQCL/hugr/compare/hugr-core-v0.21.0...hugr-core-v0.22.0) - 2025-07-24

Expand Down
4 changes: 2 additions & 2 deletions hugr-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hugr-core"
version = "0.22.1"
version = "0.22.2"
edition = { workspace = true }
rust-version = { workspace = true }

Expand Down Expand Up @@ -28,7 +28,7 @@ bench = false
name = "model"

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

cgmath = { workspace = true, features = ["serde"] }
delegate = { workspace = true }
Expand Down
7 changes: 7 additions & 0 deletions hugr-llvm/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog


## [0.22.2](https://github.com/CQCL/hugr/compare/hugr-llvm-v0.22.1...hugr-llvm-v0.22.2) - 2025-08-06

### Bug Fixes

- added public func getter for EmitFuncContext ([#2482](https://github.com/CQCL/hugr/pull/2482))
- *(hugr-llvm)* Set llvm function linkage based on Visibility hugr node field ([#2502](https://github.com/CQCL/hugr/pull/2502))
# Changelog
All notable changes to this project will be documented in this file.

Expand Down
4 changes: 2 additions & 2 deletions hugr-llvm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hugr-llvm"
version = "0.22.1"
version = "0.22.2"
description = "A general and extensible crate for lowering HUGRs into LLVM IR"

edition.workspace = true
Expand All @@ -26,7 +26,7 @@ workspace = true

[dependencies]
inkwell = { version = "0.6.0", default-features = false }
hugr-core = { path = "../hugr-core", version = "0.22.1" }
hugr-core = { path = "../hugr-core", version = "0.22.2" }
anyhow.workspace = true
itertools.workspace = true
delegate.workspace = true
Expand Down
5 changes: 5 additions & 0 deletions hugr-model/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## [0.22.2](https://github.com/CQCL/hugr/compare/hugr-model-v0.22.1...hugr-model-v0.22.2) - 2025-08-06

### New Features

- Type of constants in `core` `Term`s. ([#2411](https://github.com/CQCL/hugr/pull/2411))

## [0.22.0](https://github.com/CQCL/hugr/compare/hugr-model-v0.21.0...hugr-model-v0.22.0) - 2025-07-24

Expand Down
2 changes: 1 addition & 1 deletion hugr-model/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hugr-model"
version = "0.22.1"
version = "0.22.2"
readme = "README.md"
documentation = "https://docs.rs/hugr-model/"
description = "Data model for Quantinuum's HUGR intermediate representation"
Expand Down
4 changes: 2 additions & 2 deletions hugr-passes/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hugr-passes"
version = "0.22.1"
version = "0.22.2"
edition = { workspace = true }
rust-version = { workspace = true }
license = { workspace = true }
Expand All @@ -19,7 +19,7 @@ workspace = true
bench = false

[dependencies]
hugr-core = { path = "../hugr-core", version = "0.22.1" }
hugr-core = { path = "../hugr-core", version = "0.22.2" }
portgraph = { workspace = true }
ascent = { version = "0.8.0" }
derive_more = { workspace = true, features = ["display", "error", "from"] }
Expand Down
4 changes: 2 additions & 2 deletions hugr-persistent/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hugr-persistent"
version = "0.2.1"
version = "0.2.2"
edition = { workspace = true }
rust-version = { workspace = true }
license = { workspace = true }
Expand All @@ -16,7 +16,7 @@ categories = ["compilers"]
name = "persistent_walker_example"

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

derive_more = { workspace = true, features = ["display", "error", "from"] }
delegate.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion hugr-py/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ bench = false

[dependencies]
bumpalo = { workspace = true, features = ["collections"] }
hugr-model = { version = "0.22.1", path = "../hugr-model", features = ["pyo3"] }
hugr-model = { version = "0.22.2", path = "../hugr-model", features = ["pyo3"] }
paste.workspace = true
pyo3 = { workspace = true, features = ["extension-module", "abi3-py310"] }
6 changes: 6 additions & 0 deletions hugr/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## [0.22.2](https://github.com/CQCL/hugr/compare/hugr-v0.22.1...hugr-v0.22.2) - 2025-08-06

### New Features

- Type of constants in `core` `Term`s. ([#2411](https://github.com/CQCL/hugr/pull/2411))
- Support LineConvexChecker ([#2487](https://github.com/CQCL/hugr/pull/2487))

## [0.22.1](https://github.com/CQCL/hugr/compare/hugr-v0.22.0...hugr-v0.22.1) - 2025-07-28

Expand Down
12 changes: 6 additions & 6 deletions hugr/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hugr"
version = "0.22.1"
version = "0.22.2"
edition = { workspace = true }
rust-version = { workspace = true }

Expand Down Expand Up @@ -31,11 +31,11 @@ zstd = ["hugr-core/zstd"]
persistent_unstable = ["hugr-persistent"]

[dependencies]
hugr-model = { path = "../hugr-model", version = "0.22.1" }
hugr-core = { path = "../hugr-core", version = "0.22.1" }
hugr-passes = { path = "../hugr-passes", version = "0.22.1" }
hugr-llvm = { path = "../hugr-llvm", version = "0.22.1", optional = true }
hugr-persistent = { path = "../hugr-persistent", version = "0.2.1", optional = true }
hugr-model = { path = "../hugr-model", version = "0.22.2" }
hugr-core = { path = "../hugr-core", version = "0.22.2" }
hugr-passes = { path = "../hugr-passes", version = "0.22.2" }
hugr-llvm = { path = "../hugr-llvm", version = "0.22.2", optional = true }
hugr-persistent = { path = "../hugr-persistent", version = "0.2.2", optional = true }

[dev-dependencies]
lazy_static = { workspace = true }
Expand Down
Loading