Skip to content

Commit 783986a

Browse files
hugrbotaborgna-q
hugrbot
andauthored
chore: release (#1868)
## 🤖 New release * `hugr`: 0.14.1 -> 0.14.2 (✓ API compatible changes) * `hugr-core`: 0.14.1 -> 0.14.2 (✓ API compatible changes) * `hugr-model`: 0.16.0 -> 0.17.0 (⚠️ API breaking changes) * `hugr-llvm`: 0.14.1 -> 0.14.2 (✓ API compatible changes) * `hugr-passes`: 0.14.1 -> 0.14.2 (✓ API compatible changes) * `hugr-cli`: 0.14.1 -> 0.14.2 (✓ API compatible changes) ### ⚠️ `hugr-model` breaking changes ``` --- failure enum_variant_added: enum variant added on exhaustive enum --- Description: A publicly-visible enum without #[non_exhaustive] has a new variant. ref: https://doc.rust-lang.org/cargo/reference/semver.html#enum-variant-new impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.38.0/src/lints/enum_variant_added.ron Failed in: variant Term:Const in /tmp/.tmpszSQ4r/hugr/hugr-model/src/v0/mod.rs:591 variant Term:ConstFunc in /tmp/.tmpszSQ4r/hugr/hugr-model/src/v0/mod.rs:697 variant Term:ConstAdt in /tmp/.tmpszSQ4r/hugr/hugr-model/src/v0/mod.rs:703 variant Term:Bytes in /tmp/.tmpszSQ4r/hugr/hugr-model/src/v0/mod.rs:711 variant Term:BytesType in /tmp/.tmpszSQ4r/hugr/hugr-model/src/v0/mod.rs:717 variant Term:Meta in /tmp/.tmpszSQ4r/hugr/hugr-model/src/v0/mod.rs:720 variant Operation:Const in /tmp/.tmpszSQ4r/hugr/hugr-model/src/v0/mod.rs:409 --- failure enum_variant_missing: pub enum variant removed or renamed --- Description: A publicly-visible enum has at least one variant that is no longer available under its prior name. It may have been renamed or removed entirely. ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.38.0/src/lints/enum_variant_missing.ron Failed in: variant Term::Quote, previously in file /tmp/.tmp8fke0a/hugr-model/src/v0/mod.rs:565 --- failure struct_missing: pub struct removed or renamed --- Description: A publicly-visible struct cannot be imported by its prior path. A `pub use` may have been removed, or the struct itself may have been renamed or removed entirely. ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.38.0/src/lints/struct_missing.ron Failed in: struct hugr_model::v0::MetaItem, previously in file /tmp/.tmp8fke0a/hugr-model/src/v0/mod.rs:500 ``` <details><summary><i><b>Changelog</b></i></summary><p> ## `hugr` <blockquote> ## [0.14.2](hugr-v0.14.1...hugr-v0.14.2) - 2025-01-20 ### Bug Fixes - Three bugfixes in model import and export. (#1844) ### Documentation - Fix typo in `DataflowParent` doc (#1865) ### New Features - Add CallGraph struct, and dead-function-removal pass (#1796) - `Value::some`, `::none`, and `SumType::new_option` helpers (#1828) - Constant values in `hugr-model` (#1838) - *(hugr-llvm)* Emit ipow (#1839) - Bytes literal in hugr-model. (#1845) - Improved representation for metadata in `hugr-model` (#1849) ### Testing - Add tests for constant value deserialization (#1822) </blockquote> ## `hugr-core` <blockquote> ## [0.14.2](hugr-core-v0.14.1...hugr-core-v0.14.2) - 2025-01-20 ### Bug Fixes - Three bugfixes in model import and export. (#1844) ### Documentation - Fix typo in `DataflowParent` doc (#1865) ### New Features - `Value::some`, `::none`, and `SumType::new_option` helpers (#1828) - Constant values in `hugr-model` (#1838) - *(hugr-llvm)* Emit ipow (#1839) - Bytes literal in hugr-model. (#1845) - Improved representation for metadata in `hugr-model` (#1849) ### Testing - Add tests for constant value deserialization (#1822) </blockquote> ## `hugr-model` <blockquote> ## [0.17.0](hugr-model-v0.16.0...hugr-model-v0.17.0) - 2025-01-20 ### Bug Fixes - Three bugfixes in model import and export. (#1844) ### New Features - Constant values in `hugr-model` (#1838) - Bytes literal in hugr-model. (#1845) - Improved representation for metadata in `hugr-model` (#1849) </blockquote> ## `hugr-llvm` <blockquote> ## [0.14.2](hugr-llvm-v0.14.1...hugr-llvm-v0.14.2) - 2025-01-20 ### New Features - *(hugr-llvm)* Emit more int ops (#1835) - Constant values in `hugr-model` (#1838) - *(hugr-llvm)* Emit ipow (#1839) ### Refactor - *(hugr-llvm)* [**breaking**] Optimise the llvm types used to represent hugr sums. (#1855) ### Testing - Fix failing inot test (#1841) </blockquote> ## `hugr-passes` <blockquote> ## [0.14.2](hugr-passes-v0.14.1...hugr-passes-v0.14.2) - 2025-01-20 ### New Features - Add CallGraph struct, and dead-function-removal pass (#1796) </blockquote> ## `hugr-cli` <blockquote> ## [0.14.1](hugr-cli-v0.14.0...hugr-cli-v0.14.1) - 2024-12-18 ### New Features - Print `hugr-cli`'s correct version when using '--version' (#1790) </blockquote> </p></details> --- This PR was generated with [release-plz](https://github.com/release-plz/release-plz/). --------- Co-authored-by: Agustín Borgna <[email protected]>
1 parent 8cbbc35 commit 783986a

File tree

11 files changed

+93
-14
lines changed

11 files changed

+93
-14
lines changed

hugr-cli/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hugr-cli"
3-
version = "0.14.1"
3+
version = "0.14.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.14.1" }
22+
hugr = { path = "../hugr", version = "0.14.2" }
2323
serde_json.workspace = true
2424
clio = { workspace = true, features = ["clap-parse"] }
2525

hugr-core/CHANGELOG.md

+22
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
# Changelog
22

3+
## [0.14.2](https://github.com/CQCL/hugr/compare/hugr-core-v0.14.1...hugr-core-v0.14.2) - 2025-01-20
4+
5+
### Bug Fixes
6+
7+
- Three bugfixes in model import and export. (#1844)
8+
9+
### Documentation
10+
11+
- Fix typo in `DataflowParent` doc (#1865)
12+
13+
### New Features
14+
15+
- `Value::some`, `::none`, and `SumType::new_option` helpers (#1828)
16+
- Constant values in `hugr-model` (#1838)
17+
- *(hugr-llvm)* Emit ipow (#1839)
18+
- Bytes literal in hugr-model. (#1845)
19+
- Improved representation for metadata in `hugr-model` (#1849)
20+
21+
### Testing
22+
23+
- Add tests for constant value deserialization (#1822)
24+
325
## [0.14.1](https://github.com/CQCL/hugr/compare/hugr-core-v0.14.0...hugr-core-v0.14.1) - 2024-12-18
426

527
### Bug Fixes

hugr-core/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hugr-core"
3-
version = "0.14.1"
3+
version = "0.14.2"
44
edition = { workspace = true }
55
rust-version = { workspace = true }
66

@@ -53,7 +53,7 @@ paste = { workspace = true }
5353
strum = { workspace = true }
5454
strum_macros = { workspace = true }
5555
semver = { version = "1.0.23", features = ["serde"] }
56-
hugr-model = { version = "0.16.0", path = "../hugr-model", optional = true }
56+
hugr-model = { version = "0.17.0", path = "../hugr-model", optional = true }
5757
indexmap.workspace = true
5858
fxhash.workspace = true
5959
bumpalo = { workspace = true, features = ["collections"] }

hugr-llvm/CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.14.2](https://github.com/CQCL/hugr/compare/hugr-llvm-v0.14.1...hugr-llvm-v0.14.2) - 2025-01-20
10+
11+
### New Features
12+
13+
- *(hugr-llvm)* Emit more int ops (#1835)
14+
- Constant values in `hugr-model` (#1838)
15+
- *(hugr-llvm)* Emit ipow (#1839)
16+
17+
### Refactor
18+
19+
- *(hugr-llvm)* [**breaking**] Optimise the llvm types used to represent hugr sums. (#1855)
20+
21+
### Testing
22+
23+
- Fix failing inot test (#1841)
24+
925
## [0.14.1](https://github.com/CQCL/hugr/compare/hugr-llvm-v0.14.0...hugr-llvm-v0.14.1) - 2024-12-18
1026

1127
### Bug Fixes

hugr-llvm/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hugr-llvm"
3-
version = "0.14.1"
3+
version = "0.14.2"
44
description = "A general and extensible crate for lowering HUGRs into LLVM IR"
55

66
edition.workspace = true
@@ -32,7 +32,7 @@ llvm14-0 = ["inkwell/llvm14-0"]
3232

3333
[dependencies]
3434
inkwell = { version = "0.5.0", default-features = false }
35-
hugr-core = { path = "../hugr-core", version = "0.14.1" }
35+
hugr-core = { path = "../hugr-core", version = "0.14.2" }
3636
anyhow = "1.0.83"
3737
itertools.workspace = true
3838
delegate.workspace = true

hugr-model/CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## [0.17.0](https://github.com/CQCL/hugr/compare/hugr-model-v0.16.0...hugr-model-v0.17.0) - 2025-01-20
4+
5+
### Bug Fixes
6+
7+
- Three bugfixes in model import and export. (#1844)
8+
9+
### New Features
10+
11+
- Constant values in `hugr-model` (#1838)
12+
- Bytes literal in hugr-model. (#1845)
13+
- Improved representation for metadata in `hugr-model` (#1849)
14+
315
## [0.16.0](https://github.com/CQCL/hugr/compare/hugr-model-v0.15.0...hugr-model-v0.16.0) - 2024-12-18
416

517
### New Features

hugr-model/Cargo.toml

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

hugr-passes/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
# Changelog
22

33

4+
## [0.14.2](https://github.com/CQCL/hugr/compare/hugr-passes-v0.14.1...hugr-passes-v0.14.2) - 2025-01-20
5+
6+
### New Features
7+
8+
- Add CallGraph struct, and dead-function-removal pass (#1796)
9+
410
## [0.14.1](https://github.com/CQCL/hugr/compare/hugr-passes-v0.14.0...hugr-passes-v0.14.1) - 2024-12-18
511

612
### Bug Fixes

hugr-passes/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hugr-passes"
3-
version = "0.14.1"
3+
version = "0.14.2"
44
edition = { workspace = true }
55
rust-version = { workspace = true }
66
license = { workspace = true }
@@ -16,7 +16,7 @@ categories = ["compilers"]
1616
bench = false
1717

1818
[dependencies]
19-
hugr-core = { path = "../hugr-core", version = "0.14.1" }
19+
hugr-core = { path = "../hugr-core", version = "0.14.2" }
2020
portgraph = { workspace = true }
2121
ascent = { version = "0.7.0" }
2222
itertools = { workspace = true }

hugr/CHANGELOG.md

+23
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,28 @@
11
# Changelog
22

3+
## [0.14.2](https://github.com/CQCL/hugr/compare/hugr-v0.14.1...hugr-v0.14.2) - 2025-01-20
4+
5+
### Bug Fixes
6+
7+
- Three bugfixes in model import and export. (#1844)
8+
9+
### Documentation
10+
11+
- Fix typo in `DataflowParent` doc (#1865)
12+
13+
### New Features
14+
15+
- Add CallGraph struct, and dead-function-removal pass (#1796)
16+
- `Value::some`, `::none`, and `SumType::new_option` helpers (#1828)
17+
- Constant values in `hugr-model` (#1838)
18+
- *(hugr-llvm)* Emit ipow (#1839)
19+
- Bytes literal in hugr-model. (#1845)
20+
- Improved representation for metadata in `hugr-model` (#1849)
21+
22+
### Testing
23+
24+
- Add tests for constant value deserialization (#1822)
25+
326
## [0.14.1](https://github.com/CQCL/hugr/compare/hugr-v0.14.0...hugr-v0.14.1) - 2024-12-18
427

528
### Bug Fixes

hugr/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hugr"
3-
version = "0.14.1"
3+
version = "0.14.2"
44
edition = { workspace = true }
55
rust-version = { workspace = true }
66

@@ -29,10 +29,10 @@ llvm = ["hugr-llvm/llvm14-0"]
2929
llvm-test = ["hugr-llvm/llvm14-0", "hugr-llvm/test-utils"]
3030

3131
[dependencies]
32-
hugr-model = { path = "../hugr-model", optional = true, version = "0.16.0" }
33-
hugr-core = { path = "../hugr-core", version = "0.14.1" }
34-
hugr-passes = { path = "../hugr-passes", version = "0.14.1" }
35-
hugr-llvm = {path = "../hugr-llvm", version = "0.14.1", optional = true}
32+
hugr-model = { path = "../hugr-model", optional = true, version = "0.17.0" }
33+
hugr-core = { path = "../hugr-core", version = "0.14.2" }
34+
hugr-passes = { path = "../hugr-passes", version = "0.14.2" }
35+
hugr-llvm = { path = "../hugr-llvm", version = "0.14.2", optional = true }
3636

3737
[dev-dependencies]
3838
rstest = { workspace = true }

0 commit comments

Comments
 (0)