Skip to content

Commit 808881f

Browse files
committed
Force a non-breaking release
1 parent 6cc4f8f commit 808881f

File tree

11 files changed

+249
-158
lines changed

11 files changed

+249
-158
lines changed

Cargo.lock

Lines changed: 230 additions & 135 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

hugr-cli/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Changelog
22

33

4-
## [0.16.0](https://github.com/CQCL/hugr/compare/hugr-cli-v0.15.2...hugr-cli-v0.16.0) - 2025-04-02
4+
## [0.15.3](https://github.com/CQCL/hugr/compare/hugr-cli-v0.15.2...hugr-cli-v0.15.3) - 2025-04-02
55

66
### Documentation
77

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

hugr-core/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## [0.16.0](https://github.com/CQCL/hugr/compare/hugr-core-v0.15.2...hugr-core-v0.16.0) - 2025-04-02
3+
## [0.15.3](https://github.com/CQCL/hugr/compare/hugr-core-v0.15.2...hugr-core-v0.15.3) - 2025-04-02
44

55
### Documentation
66

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.16.0"
3+
version = "0.15.3"
44
edition = { workspace = true }
55
rust-version = { workspace = true }
66

hugr-llvm/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ 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

8-
## [0.16.0](https://github.com/CQCL/hugr/compare/hugr-llvm-v0.15.2...hugr-llvm-v0.16.0) - 2025-04-02
8+
## [0.15.3](https://github.com/CQCL/hugr/compare/hugr-llvm-v0.15.2...hugr-llvm-v0.15.3) - 2025-04-02
99

1010
### New Features
1111

hugr-llvm/Cargo.toml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hugr-llvm"
3-
version = "0.16.0"
3+
version = "0.15.3"
44
description = "A general and extensible crate for lowering HUGRs into LLVM IR"
55

66
edition.workspace = true
@@ -16,19 +16,15 @@ keywords = ["Quantum", "Quantinuum"]
1616
categories = ["compilers"]
1717

1818
[features]
19-
test-utils = [
20-
"insta",
21-
"rstest",
22-
"portgraph",
23-
]
19+
test-utils = ["insta", "rstest", "portgraph"]
2420

2521
default = ["llvm14-0"]
2622
llvm14-0 = ["inkwell/llvm14-0"]
2723

2824

2925
[dependencies]
3026
inkwell = { version = "0.5.0", default-features = false }
31-
hugr-core = { path = "../hugr-core", version = "0.16.0" }
27+
hugr-core = { path = "../hugr-core", version = "0.15.3" }
3228
anyhow = "1.0.97"
3329
itertools.workspace = true
3430
delegate.workspace = true

hugr-passes/CHANGELOG.md

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

33

4-
## [0.16.0](https://github.com/CQCL/hugr/compare/hugr-passes-v0.15.2...hugr-passes-v0.16.0) - 2025-04-02
4+
## [0.15.3](https://github.com/CQCL/hugr/compare/hugr-passes-v0.15.2...hugr-passes-v0.15.3) - 2025-04-02
55

66
### New Features
77

88
- ReplaceTypes pass allows replacing extension types and ops ([#1989](https://github.com/CQCL/hugr/pull/1989))
99
- MakeTuple->UnpackTuple elision pass ([#2012](https://github.com/CQCL/hugr/pull/2012))
10-
- [**breaking**] Extend LowerTypes pass to linearize by inserting copy/discard ([#2018](https://github.com/CQCL/hugr/pull/2018))
10+
- Extend LowerTypes pass to linearize by inserting copy/discard ([#2018](https://github.com/CQCL/hugr/pull/2018))
1111

1212
## [0.15.1](https://github.com/CQCL/hugr/compare/hugr-passes-v0.15.0...hugr-passes-v0.15.1) - 2025-03-21
1313

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.16.0"
3+
version = "0.15.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.16.0" }
19+
hugr-core = { path = "../hugr-core", version = "0.15.3" }
2020
portgraph = { workspace = true }
2121
ascent = { version = "0.8.0" }
2222
derive_more = { workspace = true, features = ["display", "error", "from"] }

hugr/CHANGELOG.md

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

3-
## [0.16.0](https://github.com/CQCL/hugr/compare/hugr-v0.15.2...hugr-v0.16.0) - 2025-04-02
3+
## [0.15.3](https://github.com/CQCL/hugr/compare/hugr-v0.15.2...hugr-v0.15.3) - 2025-04-02
44

55
### Documentation
66

@@ -9,7 +9,7 @@
99
### New Features
1010

1111
- MakeTuple->UnpackTuple elision pass ([#2012](https://github.com/CQCL/hugr/pull/2012))
12-
- [**breaking**] Extend LowerTypes pass to linearize by inserting copy/discard ([#2018](https://github.com/CQCL/hugr/pull/2018))
12+
- Extend LowerTypes pass to linearize by inserting copy/discard ([#2018](https://github.com/CQCL/hugr/pull/2018))
1313
- Expand SimpleReplacement API ([#1920](https://github.com/CQCL/hugr/pull/1920))
1414
- Python bindings for `hugr-model`. ([#1959](https://github.com/CQCL/hugr/pull/1959))
1515
- ReplaceTypes pass allows replacing extension types and ops ([#1989](https://github.com/CQCL/hugr/pull/1989))

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.16.0"
3+
version = "0.15.3"
44
edition = { workspace = true }
55
rust-version = { workspace = true }
66

@@ -33,9 +33,9 @@ zstd = ["hugr-core/zstd"]
3333

3434
[dependencies]
3535
hugr-model = { path = "../hugr-model", optional = true, version = "0.19.0" }
36-
hugr-core = { path = "../hugr-core", version = "0.16.0" }
37-
hugr-passes = { path = "../hugr-passes", version = "0.16.0" }
38-
hugr-llvm = { path = "../hugr-llvm", version = "0.16.0", optional = true }
36+
hugr-core = { path = "../hugr-core", version = "0.15.3" }
37+
hugr-passes = { path = "../hugr-passes", version = "0.15.3" }
38+
hugr-llvm = { path = "../hugr-llvm", version = "0.15.3", optional = true }
3939

4040
[dev-dependencies]
4141
lazy_static = { workspace = true }

0 commit comments

Comments
 (0)