Skip to content

Commit c4a6024

Browse files
author
hugrbot
authored
chore: release v0.14.1
1 parent e40b6c7 commit c4a6024

File tree

10 files changed

+59
-11
lines changed

10 files changed

+59
-11
lines changed

hugr-cli/CHANGELOG.md

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

33

4+
## [0.14.1](https://github.com/CQCL/hugr/compare/hugr-cli-v0.14.0...hugr-cli-v0.14.1) - 2024-12-17
5+
6+
### New Features
7+
8+
- Print `hugr-cli`'s correct version when using '--version' (#1790)
9+
410
## [0.14.0](https://github.com/CQCL/hugr/compare/hugr-cli-v0.13.3...hugr-cli-v0.14.0) - 2024-12-16
511

612
### ⚠ BREAKING CHANGES

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

hugr-core/CHANGELOG.md

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

3+
## [0.14.1](https://github.com/CQCL/hugr/compare/hugr-core-v0.14.0...hugr-core-v0.14.1) - 2024-12-17
4+
5+
### Bug Fixes
6+
7+
- `Call` ops not tracking their parameter extensions (#1805)
8+
9+
### New Features
10+
11+
- Lower LoadNat to LLVM (#1801)
12+
- Cleanup `Display` of types and arguments (#1802)
13+
- add ArrayValue to python, rust and lowering (#1773)
14+
315
## [0.14.0](https://github.com/CQCL/hugr/compare/hugr-core-v0.13.3...hugr-core-v0.14.0) - 2024-12-16
416

517
This release includes a long list of breaking changes that simplify the API, specially around

hugr-core/Cargo.toml

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

hugr-llvm/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
9+
## [0.14.1](https://github.com/CQCL/hugr/compare/hugr-llvm-v0.14.0...hugr-llvm-v0.14.1) - 2024-12-17
10+
11+
### New Features
12+
13+
- Lower LoadNat to LLVM (#1801)
14+
- add ArrayValue to python, rust and lowering (#1773)
815
## [0.13.3](https://github.com/CQCL/hugr-llvm/compare/v0.6.0...v0.6.1) - 2024-11-25
916
No changes - version bump to catch up with other hugr crates in repository move.
1017

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.0"
3+
version = "0.14.1"
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.0" }
35+
hugr-core = { path = "../hugr-core", version = "0.14.1" }
3636
anyhow = "1.0.83"
3737
itertools.workspace = true
3838
delegate.workspace = true

hugr-passes/CHANGELOG.md

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

33

4+
## [0.14.1](https://github.com/CQCL/hugr/compare/hugr-passes-v0.14.0...hugr-passes-v0.14.1) - 2024-12-17
5+
6+
### Bug Fixes
7+
8+
- Constant folding now tolerates root nodes without input/output nodes (#1799)
9+
10+
### New Features
11+
12+
- Cleanup `Display` of types and arguments (#1802)
13+
414
## [0.14.0](https://github.com/CQCL/hugr/compare/hugr-passes-v0.13.3...hugr-passes-v0.14.0) - 2024-12-16
515

616
### ⚠ BREAKING CHANGES

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

hugr/CHANGELOG.md

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

3+
## [0.14.1](https://github.com/CQCL/hugr/compare/hugr-v0.14.0...hugr-v0.14.1) - 2024-12-17
4+
5+
### Bug Fixes
6+
7+
- Constant folding now tolerates root nodes without input/output nodes (#1799)
8+
- `Call` ops not tracking their parameter extensions (#1805)
9+
10+
### New Features
11+
12+
- Lower LoadNat to LLVM (#1801)
13+
- Cleanup `Display` of types and arguments (#1802)
14+
- add ArrayValue to python, rust and lowering (#1773)
15+
316
## [0.14.0](https://github.com/CQCL/hugr/compare/hugr-v0.13.3...hugr-v0.14.0) - 2024-12-16
417

518
This release includes a long list of breaking changes that simplify the API, specially around

hugr/Cargo.toml

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

@@ -30,9 +30,9 @@ llvm-test = ["hugr-llvm/llvm14-0", "hugr-llvm/test-utils"]
3030

3131
[dependencies]
3232
hugr-model = { path = "../hugr-model", optional = true, version = "0.15.0" }
33-
hugr-core = { path = "../hugr-core", version = "0.14.0" }
34-
hugr-passes = { path = "../hugr-passes", version = "0.14.0" }
35-
hugr-llvm = {path = "../hugr-llvm", version = "0.14.0", optional = true}
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}
3636

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

0 commit comments

Comments
 (0)