Skip to content

Commit 47cf253

Browse files
author
hugrbot
authored
chore: release v0.14.2
1 parent cad7484 commit 47cf253

File tree

8 files changed

+38
-11
lines changed

8 files changed

+38
-11
lines changed

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.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

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
## [0.14.2](https://github.com/CQCL/hugr/compare/hugr-core-v0.14.1...hugr-core-v0.14.2) - 2024-12-24
4+
5+
### New Features
6+
7+
- `Value::some`, `::none`, and `SumType::new_option` helpers (#1828)
8+
9+
### Testing
10+
11+
- Add tests for constant value deserialization (#1822)
12+
313
## [0.14.1](https://github.com/CQCL/hugr/compare/hugr-core-v0.14.0...hugr-core-v0.14.1) - 2024-12-18
414

515
### Bug Fixes

hugr-core/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-core"
3-
version = "0.14.1"
3+
version = "0.14.2"
44
edition = { workspace = true }
55
rust-version = { workspace = true }
66

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.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-passes/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
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) - 2024-12-24
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

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.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

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Changelog
22

3+
## [0.14.2](https://github.com/CQCL/hugr/compare/hugr-v0.14.1...hugr-v0.14.2) - 2024-12-24
4+
5+
### New Features
6+
7+
- Add CallGraph struct, and dead-function-removal pass (#1796)
8+
- `Value::some`, `::none`, and `SumType::new_option` helpers (#1828)
9+
10+
### Testing
11+
12+
- Add tests for constant value deserialization (#1822)
13+
314
## [0.14.1](https://github.com/CQCL/hugr/compare/hugr-v0.14.0...hugr-v0.14.1) - 2024-12-18
415

516
### Bug Fixes

hugr/Cargo.toml

Lines changed: 4 additions & 4 deletions
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

@@ -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.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}
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)