Skip to content

Commit

Permalink
Prepare 0.5.0 release (#438)
Browse files Browse the repository at this point in the history
* Prepare 0.5.0 release

* Move release notes to `0.5` directory
  • Loading branch information
garrison authored Oct 31, 2023
1 parent 2df0933 commit e8920ad
Show file tree
Hide file tree
Showing 12 changed files with 14 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
name: html_docs
path: ./docs/_build/html
- name: Deploy docs
if: ${{ github.ref == 'refs/heads/stable/0.4' }}
if: ${{ github.ref == 'refs/heads/stable/0.5' }}
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .mergify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ pull_request_rules:
actions:
backport:
branches:
- stable/0.4
- stable/0.5
2 changes: 1 addition & 1 deletion docs/circuit_cutting/explanation/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Much of the circuit cutting literature describes a process where we sample from

Current limitations
-------------------
* ``PauliList`` is the only supported observable format until no sooner than CKT v0.5.0.
* ``PauliList`` is the only supported observable format until no sooner than CKT v0.6.0.

References
----------
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
"source": [
"### Specify some observables\n",
"\n",
"Currently, only `Pauli` observables with phase equal to 1 are supported. Full support for `SparsePauliOp` is expected in CKT v0.5.0."
"Currently, only `Pauli` observables with phase equal to 1 are supported. Full support for `SparsePauliOp` is expected in CKT v0.6.0."
]
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
"source": [
"### Specify some observables\n",
"\n",
"Currently, only `Pauli` observables with phase equal to 1 are supported. Full support for `SparsePauliOp` is expected in CKT v0.5.0."
"Currently, only `Pauli` observables with phase equal to 1 are supported. Full support for `SparsePauliOp` is expected in CKT v0.6.0."
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "circuit-knitting-toolbox"
version = "0.4.0"
version = "0.5.0"
description = "A software prototype for a circuit knitting toolbox which connects user applications with runtime primitives"
readme = "README.md"
license = {file = "LICENSE.txt"}
Expand Down
8 changes: 8 additions & 0 deletions releasenotes/notes/0.5/prepare-0.5-1057fa4d83bf26dc.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
prelude: |
The primary purpose of this release is to swap the order of the
classical registers in the circuits generated the
:mod:`circuit_knitting.cutting` module. With this change,
``"observable_measurements"`` now comes before
``"qpd_measurements"``, and there is no longer a need to insert
``num_qpd_bits`` into the result metadata by hand.

0 comments on commit e8920ad

Please sign in to comment.