Skip to content

Commit

Permalink
chore: release
Browse files Browse the repository at this point in the history
  • Loading branch information
hugrbot committed Aug 14, 2024
1 parent 8e8bba5 commit d1fb5b9
Show file tree
Hide file tree
Showing 8 changed files with 30 additions and 8 deletions.
1 change: 1 addition & 0 deletions hugr-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Changelog


## 0.4.0 (2024-08-12)

### Features
Expand Down
4 changes: 2 additions & 2 deletions hugr-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hugr-cli"
version = "0.4.0"
version = "0.4.1"
edition = { workspace = true }
rust-version = { workspace = true }
license = { workspace = true }
Expand All @@ -15,7 +15,7 @@ categories = ["compilers"]
[dependencies]
clap = { workspace = true, features = ["derive"] }
clap-verbosity-flag.workspace = true
hugr-core = { path = "../hugr-core", version = "0.8.0" }
hugr-core = { path = "../hugr-core", version = "0.9.0" }
serde_json.workspace = true
serde.workspace = true
thiserror.workspace = true
Expand Down
7 changes: 7 additions & 0 deletions hugr-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## 0.9.0 (2024-08-14)

### Refactor

- [**breaking**] Flatten `CustomOp` in to `OpType` ([#1429](https://github.com/CQCL/hugr/pull/1429))


## 0.8.0 (2024-08-12)

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion hugr-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hugr-core"
version = "0.8.0"
version = "0.9.0"
edition = { workspace = true }
rust-version = { workspace = true }

Expand Down
7 changes: 7 additions & 0 deletions hugr-passes/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## 0.8.0 (2024-08-14)

### Refactor

- [**breaking**] Flatten `CustomOp` in to `OpType` ([#1429](https://github.com/CQCL/hugr/pull/1429))


## 0.7.0 (2024-08-12)

### Features
Expand Down
4 changes: 2 additions & 2 deletions hugr-passes/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hugr-passes"
version = "0.7.0"
version = "0.8.0"
edition = { workspace = true }
rust-version = { workspace = true }
license = { workspace = true }
Expand All @@ -13,7 +13,7 @@ keywords = ["Quantum", "Quantinuum"]
categories = ["compilers"]

[dependencies]
hugr-core = { path = "../hugr-core", version = "0.8.0" }
hugr-core = { path = "../hugr-core", version = "0.9.0" }
itertools = { workspace = true }
lazy_static = { workspace = true }
paste = { workspace = true }
Expand Down
7 changes: 7 additions & 0 deletions hugr/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## 0.12.0 (2024-08-14)

### Refactor

- [**breaking**] Flatten `CustomOp` in to `OpType` ([#1429](https://github.com/CQCL/hugr/pull/1429))


## 0.11.0 (2024-08-12)

### Bug Fixes
Expand Down
6 changes: 3 additions & 3 deletions hugr/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hugr"
version = "0.11.0"
version = "0.12.0"
edition = { workspace = true }
rust-version = { workspace = true }

Expand All @@ -26,8 +26,8 @@ extension_inference = ["hugr-core/extension_inference"]
declarative = ["hugr-core/declarative"]

[dependencies]
hugr-core = { path = "../hugr-core", version = "0.8.0" }
hugr-passes = { path = "../hugr-passes", version = "0.7.0" }
hugr-core = { path = "../hugr-core", version = "0.9.0" }
hugr-passes = { path = "../hugr-passes", version = "0.8.0" }

[dev-dependencies]
rstest = { workspace = true }
Expand Down

0 comments on commit d1fb5b9

Please sign in to comment.