From b1f15f913fb99bcb3f826392c7c9b7ad1e077498 Mon Sep 17 00:00:00 2001 From: Alec Edgington <54802828+cqc-alec@users.noreply.github.com> Date: Thu, 24 Oct 2024 14:52:34 +0100 Subject: [PATCH] Bump version and update changelog for 1.34.0 release (#1637) --- flake.nix | 2 +- pytket/docs/changelog.rst | 10 +++------- 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/flake.nix b/flake.nix index 48722d5c69..fc56792cb8 100644 --- a/flake.nix +++ b/flake.nix @@ -17,7 +17,7 @@ (import ./nix-support/symengine.nix) (import ./nix-support/tket.nix) (import ./nix-support/third-party-python-packages.nix) - (import ./nix-support/pytket.nix { package_version = "1.33.0"; }) + (import ./nix-support/pytket.nix { package_version = "1.34.0"; }) ]; }; in { diff --git a/pytket/docs/changelog.rst b/pytket/docs/changelog.rst index 755549da4d..143d5592c8 100644 --- a/pytket/docs/changelog.rst +++ b/pytket/docs/changelog.rst @@ -1,23 +1,19 @@ Changelog ========= -1.33.2 (Unreleased) -------------------- +1.34.0 (October 2024) +--------------------- Features: * Add new `ClExprOp` operation type as an alternative to `ClassicalExpBox`; add option to use this when converting from QASM. * Several updates to `GreedyPauliSimp`: - - * Support for mid-circuit measurements, resets, conditionals, - and classical gates. + * Support for mid-circuit measurements, resets, conditionals, and classical gates. * New parameters `max_lookahead` and `max_tqe_candidates` are added to limit the search space. - * New parameter `seed` is added to support random sampling and tie breaking. - * New parameter `allow_zzphase` allows the algorithm to implement 2-qubit rotations using ZZPhase gates when deemed optimal.