Skip to content

Commit

Permalink
Update changelog for 1.36.0 release (#1700)
Browse files Browse the repository at this point in the history
  • Loading branch information
cqc-alec authored Nov 28, 2024
1 parent 01643fe commit c39f1cc
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
2 changes: 1 addition & 1 deletion pytket/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def requirements(self):
self.requires("pybind11_json/0.2.14")
self.requires("symengine/0.13.0")
self.requires("tkassert/0.3.4@tket/stable")
self.requires("tket/1.3.51@tket/stable")
self.requires("tket/1.3.52@tket/stable")
self.requires("tklog/0.3.3@tket/stable")
self.requires("tkrng/0.3.3@tket/stable")
self.requires("tktokenswap/0.3.9@tket/stable")
Expand Down
11 changes: 8 additions & 3 deletions pytket/docs/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
Changelog
=========

Unreleased
----------
1.36.0 (November 2024)
----------------------

Features:

* Add `BasePass.get_preconditions()` and `BasePass.getpost_conditions()`.
* Add `BasePass.get_preconditions()` and `BasePass.get_postconditions()`.

API changes:

Expand All @@ -16,6 +16,11 @@ Features:

* Add `Circuit.wasm_uid` property to get the wasm UID from the circuit

Performance:

* Optimization in Clifford simplification, reducing compilation times for
`FullPeeopholeOptimise` by an order of magnitude on x86_64.

Fixes:

* Fix `Circuit.append` for circuits containing wasm
Expand Down
2 changes: 1 addition & 1 deletion tket/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

class TketConan(ConanFile):
name = "tket"
version = "1.3.51"
version = "1.3.52"
package_type = "library"
license = "Apache 2"
homepage = "https://github.com/CQCL/tket"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ class CliffordReductionPass {
/** The circuit under transformation */
Circuit ˆ

/** Topological-order-respecting map from circuit vertices to integers */
/** Map from circuit vertices to their indices in the DAG */
IndexMap im;

/** Table of potential transports of 2qb interactions through the circuit */
Expand Down

0 comments on commit c39f1cc

Please sign in to comment.