Skip to content

Commit 6489977

Browse files
hugrbotaborgna-q
hugrbot
andauthored
chore: release (#1910)
## 🤖 New release * `hugr`: 0.14.3 * `hugr-core`: 0.14.3 * `hugr-model`: 0.17.1 * `hugr-llvm`: 0.14.3 * `hugr-passes`: 0.14.3 * `hugr-cli`: 0.14.3 <details><summary><i><b>Changelog</b></i></summary><p> ## `hugr` <blockquote> ## [0.14.3](hugr-v0.14.2...hugr-v0.14.3) - 2025-02-05 ### Bug Fixes - Export `RemoveDeadFuncsError` (#1883) - const-folding Module keeps at least "main" (#1901) - determine correct bounds of custom types (#1888) - Exporting converging control flow edges (#1890) ### Documentation - Fix deprecation warning messages (#1891) - Explain why `ConstF64` is not PartialEq (#1829) ### New Features - Special cased array, float and int constants in hugr-model export (#1857) - Simplify hugr-model (#1893) </blockquote> ## `hugr-core` <blockquote> ## [0.14.3](hugr-core-v0.14.2...hugr-core-v0.14.3) - 2025-02-05 ### Bug Fixes - determine correct bounds of custom types (#1888) - Exporting converging control flow edges (#1890) ### Documentation - Explain why `ConstF64` is not PartialEq (#1829) ### New Features - Special cased array, float and int constants in hugr-model export (#1857) - Simplify hugr-model (#1893) </blockquote> ## `hugr-model` <blockquote> ## [0.17.1](hugr-model-v0.17.0...hugr-model-v0.17.1) - 2025-02-05 ### Bug Fixes - determine correct bounds of custom types (#1888) ### New Features - Special cased array, float and int constants in hugr-model export (#1857) - Simplify hugr-model (#1893) - Do not require `capnp` to be installed to compile `hugr-model` (#1907) </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.3](hugr-passes-v0.14.2...hugr-passes-v0.14.3) - 2025-02-05 ### Bug Fixes - Export `RemoveDeadFuncsError` (#1883) - const-folding Module keeps at least "main" (#1901) ### Documentation - Fix deprecation warning messages (#1891) </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 803bb7c commit 6489977

File tree

10 files changed

+72
-14
lines changed

10 files changed

+72
-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.2"
3+
version = "0.14.3"
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.2" }
22+
hugr = { path = "../hugr", version = "0.14.3" }
2323
serde_json.workspace = true
2424
clio = { workspace = true, features = ["clap-parse"] }
2525

hugr-core/CHANGELOG.md

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

3+
## [0.14.3](https://github.com/CQCL/hugr/compare/hugr-core-v0.14.2...hugr-core-v0.14.3) - 2025-02-05
4+
5+
### Bug Fixes
6+
7+
- determine correct bounds of custom types (#1888)
8+
- Exporting converging control flow edges (#1890)
9+
10+
### Documentation
11+
12+
- Explain why `ConstF64` is not PartialEq (#1829)
13+
14+
### New Features
15+
16+
- Special cased array, float and int constants in hugr-model export (#1857)
17+
- Simplify hugr-model (#1893)
18+
319
## [0.14.2](https://github.com/CQCL/hugr/compare/hugr-core-v0.14.1...hugr-core-v0.14.2) - 2025-01-20
420

521
### 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.2"
3+
version = "0.14.3"
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.17.0", path = "../hugr-model", optional = true }
56+
hugr-model = { version = "0.17.1", path = "../hugr-model", optional = true }
5757
indexmap.workspace = true
5858
fxhash.workspace = true
5959
bumpalo = { workspace = true, features = ["collections"] }

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.2"
3+
version = "0.14.3"
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.2" }
35+
hugr-core = { path = "../hugr-core", version = "0.14.3" }
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.1](https://github.com/CQCL/hugr/compare/hugr-model-v0.17.0...hugr-model-v0.17.1) - 2025-02-05
4+
5+
### Bug Fixes
6+
7+
- determine correct bounds of custom types (#1888)
8+
9+
### New Features
10+
11+
- Special cased array, float and int constants in hugr-model export (#1857)
12+
- Simplify hugr-model (#1893)
13+
- Do not require `capnp` to be installed to compile `hugr-model` (#1907)
14+
315
## [0.17.0](https://github.com/CQCL/hugr/compare/hugr-model-v0.16.0...hugr-model-v0.17.0) - 2025-01-20
416

517
### Bug Fixes

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.17.0"
3+
version = "0.17.1"
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

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

33

4+
## [0.14.3](https://github.com/CQCL/hugr/compare/hugr-passes-v0.14.2...hugr-passes-v0.14.3) - 2025-02-05
5+
6+
### Bug Fixes
7+
8+
- Export `RemoveDeadFuncsError` (#1883)
9+
- const-folding Module keeps at least "main" (#1901)
10+
11+
### Documentation
12+
13+
- Fix deprecation warning messages (#1891)
14+
415
## [0.14.2](https://github.com/CQCL/hugr/compare/hugr-passes-v0.14.1...hugr-passes-v0.14.2) - 2025-01-20
516

617
### New Features

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.2"
3+
version = "0.14.3"
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.2" }
19+
hugr-core = { path = "../hugr-core", version = "0.14.3" }
2020
portgraph = { workspace = true }
2121
ascent = { version = "0.7.0" }
2222
itertools = { workspace = true }

hugr/CHANGELOG.md

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

3+
## [0.14.3](https://github.com/CQCL/hugr/compare/hugr-v0.14.2...hugr-v0.14.3) - 2025-02-05
4+
5+
### Bug Fixes
6+
7+
- Export `RemoveDeadFuncsError` (#1883)
8+
- const-folding Module keeps at least "main" (#1901)
9+
- determine correct bounds of custom types (#1888)
10+
- Exporting converging control flow edges (#1890)
11+
12+
### Documentation
13+
14+
- Fix deprecation warning messages (#1891)
15+
- Explain why `ConstF64` is not PartialEq (#1829)
16+
17+
### New Features
18+
19+
- Special cased array, float and int constants in hugr-model export (#1857)
20+
- Simplify hugr-model (#1893)
21+
322
## [0.14.2](https://github.com/CQCL/hugr/compare/hugr-v0.14.1...hugr-v0.14.2) - 2025-01-20
423

524
### 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.2"
3+
version = "0.14.3"
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.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 }
32+
hugr-model = { path = "../hugr-model", optional = true, version = "0.17.1" }
33+
hugr-core = { path = "../hugr-core", version = "0.14.3" }
34+
hugr-passes = { path = "../hugr-passes", version = "0.14.3" }
35+
hugr-llvm = { path = "../hugr-llvm", version = "0.14.3", optional = true }
3636

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

0 commit comments

Comments
 (0)