Skip to content

Commit

Permalink
Merge pull request #98 from CQCL/release/0.31.2
Browse files Browse the repository at this point in the history
Release/0.31.2
  • Loading branch information
cqc-alec authored Nov 9, 2023
2 parents d8e16ee + 95870ef commit a03534f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion _metadata.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__extension_version__ = "0.31.1"
__extension_version__ = "0.31.2"
__extension_name__ = "pytket-braket"
5 changes: 5 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Changelog
~~~~~~~~~

0.31.2 (November 2023)
----------------------

* Replace uses of "private" (underscored) pytket symbols.

0.31.1 (October 2023)
---------------------

Expand Down
6 changes: 3 additions & 3 deletions pytket/extensions/braket/backends/braket.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
SimplifyInitial,
NaivePlacementPass,
)
from pytket.circuit_library import _TK1_to_RzRx
from pytket.circuit_library import TK1_to_RzRx
from pytket.pauli import Pauli, QubitPauliString
from pytket.predicates import (
ConnectivityPredicate,
Expand Down Expand Up @@ -451,11 +451,11 @@ def __init__(
self._rebase_pass = RebaseCustom(
self._multiqs | self._singleqs,
Circuit(),
_TK1_to_RzRx,
TK1_to_RzRx,
)
self._squash_pass = SquashCustom(
self._singleqs,
_TK1_to_RzRx,
TK1_to_RzRx,
)

@staticmethod
Expand Down

0 comments on commit a03534f

Please sign in to comment.