diff --git a/CHANGELOG.md b/CHANGELOG.md index 762c48595..30cdbd09e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,15 +5,14 @@ # News -## dev +## v0.9.10 - 2024-09-26 +- The lifted product class of quantum LDPC codes is implemented in the ECC submodule. +- **(fix)** `ECC.code_s` now gives the number of parity checks with redundancy. If you want the number of linearly independent parity checks, you can use `LinearAlgebra.rank`. - Implementing many more named single-qubit gates following naming convention similar to the stim package in python. - **(fix)** Bug fix to the `parity_checks(ReedMuller(r, m))` of classical Reed-Muller code (it was returning generator matrix). - `RecursiveReedMuller` code implementation as an alternative implementation of `ReedMuller`. -## v0.9.10 - 2024-09-26 - -- **(fix)** `ECC.code_s` now gives the number of parity checks with redundancy. If you want the number of linearly independent parity checks, you can use `LinearAlgebra.rank`. ## v0.9.9 - 2024-08-05 diff --git a/Project.toml b/Project.toml index 802c43685..02555d45f 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "QuantumClifford" uuid = "0525e862-1e90-11e9-3e4d-1b39d7109de1" authors = ["Stefan Krastanov and QuantumSavory community members"] -version = "0.9.9" +version = "0.9.10" [deps] Combinatorics = "861a8166-3701-5b0c-9a16-15d98fcdc6aa"