Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pybindings/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ name = "libquizx"
crate-type = ["cdylib"]

[dependencies]
quizx = { version = "0.3.0", path = "../quizx" }
quizx = { version = "0.4.0", path = "../quizx" }
num = { workspace = true }
pyo3 = { workspace = true, features = [
"extension-module",
Expand Down
17 changes: 17 additions & 0 deletions quizx/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,23 @@ This is the changelog for the `quizx` rust library.
For the changelog of the `quizx` python library, see the separate [`CHANGELOG.md`](https://github.com/zxcalc/quizx/blob/master/pybindings/CHANGELOG.md) file.


## [0.4.0](https://github.com/quantinuum-dev/quizx/compare/quizx@v0.3.0...quizx@v0.4.0) - 2026-08-10

### Bug Fixes

- typo in README
- bug in cutrank caching ([#173](https://github.com/quantinuum-dev/quizx/pull/173))
- remove stale edges from rank cache
- another caching bug in rankwidth

### New Features

- [**breaking**] Added dyadic rational type and new scalars based on this type ([#158](https://github.com/quantinuum-dev/quizx/pull/158))
- use bitgauss library for fast F2 linear algebra ([#161](https://github.com/quantinuum-dev/quizx/pull/161))
- [**breaking**] low-rankwidth decompositions of ZX diagrams ([#166](https://github.com/quantinuum-dev/quizx/pull/166))
- [**breaking**] Python bindings for rankwidth functions ([#168](https://github.com/quantinuum-dev/quizx/pull/168))
- added keyword args and properties to bindings ([#169](https://github.com/quantinuum-dev/quizx/pull/169))

## [0.3.0](https://github.com/zxcalc/quizx/compare/quizx@v0.2.0...quizx@v0.3.0) - 2025-06-12

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion quizx/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "quizx"
version = "0.3.0"
version = "0.4.0"
description = "Quantum Circuit Optimisation and Compilation using the ZX-calculus"
keywords = ["Quantum", "ZX-calculus", "Optimisation", "Compilation"]
categories = ["science"]
Expand Down