Skip to content

Commit

Permalink
Merge pull request #365 from CQCL/release/1.2.1
Browse files Browse the repository at this point in the history
Release/1.2.1
  • Loading branch information
cqc-alec authored May 17, 2022
2 parents cedb4a4 + aea2ee0 commit 83c80f4
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/linuxbuildwheel
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ cd /tket/pytket
mkdir wheelhouse
mkdir audited

# Work around https://github.com/pypa/manylinux/issues/1309
git config --global --add safe.directory "*"

for pyX in $PY_VERS
do
cd /tket/pytket
Expand Down
5 changes: 5 additions & 0 deletions pytket/binders/circuit/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -293,6 +293,11 @@ PYBIND11_MODULE(circuit, m) {
"Reset", OpType::Reset,
"Resets the qubit to :math:`\\left|0\\right>`")
.value("CircBox", OpType::CircBox, "Represents an arbitrary subcircuit")
.value(
"PhasePolyBox", OpType::PhasePolyBox,
"An operation representing arbitrary circuits made up of CX and Rz "
"gates, represented as a phase polynomial together with a boolean "
"matrix representing an additional linear transformation.")
.value(
"Unitary1qBox", OpType::Unitary1qBox,
"Represents an arbitrary one-qubit unitary operation by its "
Expand Down
2 changes: 1 addition & 1 deletion pytket/docs/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Changelog
=========

1.2.0 (May 2022)
1.2.1 (May 2022)
----------------

Minor new features:
Expand Down
3 changes: 1 addition & 2 deletions pytket/docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,8 @@
author = "Cambridge Quantum Computing Ltd"

# The short X.Y version
version = "1.2"
# The full version, including alpha/beta/rc tags
release = "1.2.0"
release = "1.2.1"


# -- General configuration ---------------------------------------------------
Expand Down

0 comments on commit 83c80f4

Please sign in to comment.