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

Prepare 0.7.0 release #555

Merged
merged 1 commit into from
Apr 19, 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 .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
name: ckt_html_docs
path: ./artifact
- name: Deploy docs
if: ${{ github.ref == 'refs/heads/stable/0.6' }}
if: ${{ github.ref == 'refs/heads/stable/0.7' }}
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.6
- stable/0.7
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.6.0"
version = "0.7.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
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
deprecations:
- |
The ``circuit_cutting.cutqc`` package is deprecated and will be removed no sooner than Circuit Knitting Toolbox 0.8.0.
The ``circuit_knitting.cutting.cutqc`` package is deprecated and will be removed no sooner than Circuit Knitting Toolbox 0.8.0.
The wire cutting functionality in the :mod:`circuit_knitting.cutting` package is what will be maintained going forward.
Additionally, there is a new automated gate and wire cut-finding functionality in the :mod:`circuit_knitting.cutting.automated_cut_finding` module.
A `tutorial <https://github.com/Qiskit-Extensions/circuit-knitting-toolbox/blob/main/docs/circuit_cutting/tutorials/04_automatic_cut_finding.ipynb>`__ has been added to demonstrate automated cut-finding.
22 changes: 22 additions & 0 deletions releasenotes/notes/0.7/prepare-0.7.0-48b344ae77523c34.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
prelude:

The 0.7 release introduces an automated cut finding code for the new
circuit cutting workflow. With this milestone, the older cutting
workflow (CutQC) is now deprecated. Additionally, this is the first
CKT release to support version 2 of the Qiskit Runtime primitives.
User are encouraged to `migrate to v2 primitives
<https://docs.quantum.ibm.com/api/migration-guides/v2-primitives>`__
as soon as possible.

other:
- |
The cutting tutorials have been rephrased with the goal of
reconstructing the expectation value of a single
:class:`~qiskit.quantum_info.SparsePauliOp` with many terms,
rather than multiple independent
:class:`~qiskit.quantum_info.Pauli` observables.
- |
The `circuit cutting explanation
<./circuit_cutting/explanation/index.rst>`__ document has been
expanded significantly.