Skip to content

Commit d3ce682

Browse files
author
hugrbot
authored
chore: release
1 parent d6b8681 commit d3ce682

File tree

10 files changed

+66
-14
lines changed

10 files changed

+66
-14
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.2"
3+
version = "0.15.0"
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.15.0" }
2323
serde_json.workspace = true
2424
clio = { workspace = true, features = ["clap-parse"] }
2525

hugr-core/CHANGELOG.md

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

3+
## [0.15.0](https://github.com/CQCL/hugr/compare/hugr-core-v0.14.2...hugr-core-v0.15.0) - 2025-01-28
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+
318
## [0.14.2](https://github.com/CQCL/hugr/compare/hugr-core-v0.14.1...hugr-core-v0.14.2) - 2025-01-20
419

520
### Bug Fixes

hugr-core/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-core"
3-
version = "0.14.2"
3+
version = "0.15.0"
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.18.0", path = "../hugr-model", optional = true }
5757
indexmap.workspace = true
5858
fxhash.workspace = true
5959
bumpalo = { workspace = true, features = ["collections"] }

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.2"
3+
version = "0.15.0"
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.15.0" }
3636
anyhow = "1.0.83"
3737
itertools.workspace = true
3838
delegate.workspace = true

hugr-model/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.18.0](https://github.com/CQCL/hugr/compare/hugr-model-v0.17.0...hugr-model-v0.18.0) - 2025-01-28
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+
313
## [0.17.0](https://github.com/CQCL/hugr/compare/hugr-model-v0.16.0...hugr-model-v0.17.0) - 2025-01-20
414

515
### Bug Fixes

hugr-model/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-model"
3-
version = "0.17.0"
3+
version = "0.18.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

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

33

4+
## [0.15.0](https://github.com/CQCL/hugr/compare/hugr-passes-v0.14.2...hugr-passes-v0.15.0) - 2025-01-28
5+
6+
### Bug Fixes
7+
8+
- Export `RemoveDeadFuncsError` (#1883)
9+
10+
### Documentation
11+
12+
- Fix deprecation warning messages (#1891)
13+
414
## [0.14.2](https://github.com/CQCL/hugr/compare/hugr-passes-v0.14.1...hugr-passes-v0.14.2) - 2025-01-20
515

616
### New Features

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.2"
3+
version = "0.15.0"
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.15.0" }
2020
portgraph = { workspace = true }
2121
ascent = { version = "0.7.0" }
2222
itertools = { workspace = true }

hugr/CHANGELOG.md

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

3+
## [0.15.0](https://github.com/CQCL/hugr/compare/hugr-v0.14.2...hugr-v0.15.0) - 2025-01-28
4+
5+
### Bug Fixes
6+
7+
- Export `RemoveDeadFuncsError` (#1883)
8+
- determine correct bounds of custom types (#1888)
9+
- Exporting converging control flow edges (#1890)
10+
11+
### Documentation
12+
13+
- Fix deprecation warning messages (#1891)
14+
- Explain why `ConstF64` is not PartialEq (#1829)
15+
16+
### New Features
17+
18+
- Special cased array, float and int constants in hugr-model export (#1857)
19+
320
## [0.14.2](https://github.com/CQCL/hugr/compare/hugr-v0.14.1...hugr-v0.14.2) - 2025-01-20
421

522
### Bug Fixes

hugr/Cargo.toml

Lines changed: 5 additions & 5 deletions
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.15.0"
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.18.0" }
33+
hugr-core = { path = "../hugr-core", version = "0.15.0" }
34+
hugr-passes = { path = "../hugr-passes", version = "0.15.0" }
35+
hugr-llvm = { path = "../hugr-llvm", version = "0.15.0", optional = true }
3636

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

0 commit comments

Comments
 (0)