Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update changelog for 1.36.0 release #1700

Merged
merged 3 commits into from
Nov 28, 2024
Merged
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 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
Loading