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

Fix broken anchor links in release notes #1947

Merged
merged 1 commit into from
Sep 24, 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
4 changes: 2 additions & 2 deletions release-notes/0.5.0.rst
Original file line number Diff line number Diff line change
Expand Up @@ -79,12 +79,12 @@ Upgrade Notes
`jobs() <https://docs.quantum.ibm.com/api/qiskit-ibm-runtime/qiskit_ibm_runtime.QiskitRuntimeService#jobs>`__ with
the parameter ``session_id``.

- `run() <https://docs.quantum.ibm.com/api/qiskit-ibm-runtime/qiskit_ibm_runtime.QiskitRuntimeService#run>`__ now
- `run() <https://docs.quantum.ibm.com/api/qiskit-ibm-runtime/0.29/qiskit_ibm_runtime.QiskitRuntimeService#run>`__ now
supports a new parameter, ``job_tags``. These tags can be used when
filtering jobs with
`jobs() <https://docs.quantum.ibm.com/api/qiskit-ibm-runtime/qiskit_ibm_runtime.QiskitRuntimeService#jobs>`__.

- `run() <https://docs.quantum.ibm.com/api/qiskit-ibm-runtime/qiskit_ibm_runtime.QiskitRuntimeService#run>`__ now
- `run() <https://docs.quantum.ibm.com/api/qiskit-ibm-runtime/0.29/qiskit_ibm_runtime.QiskitRuntimeService#run>`__ now
supports a new parameter, ``max_execution_time``, which can be used
to override the default program maximum execution time. It should be
less than or equal to the program maximum execution time.
Expand Down
2 changes: 1 addition & 1 deletion release-notes/0.7.0.rst
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Deprecation Notes
``quantum_kernal_alignment`` have been deprecated due to low usage.

- Passing ``instance`` parameter to the
`qiskit_ibm_runtime.QiskitRuntimeService.run() <https://docs.quantum.ibm.com/api/qiskit-ibm-runtime/qiskit_ibm_runtime.QiskitRuntimeService#run>`__
`qiskit_ibm_runtime.QiskitRuntimeService.run() <https://docs.quantum.ibm.com/api/qiskit-ibm-runtime/0.29/qiskit_ibm_runtime.QiskitRuntimeService#run>`__
has been deprecated. Instead, you can pass the ``instance`` parameter
inside the ``options`` parameter.

Expand Down
2 changes: 1 addition & 1 deletion release-notes/0.8.0.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ New Features

- You can now specify a pair of result decoders for the
``result_decoder`` parameter of
`qiskit_ibm_runtime.QiskitRuntimeService.run() <https://docs.quantum.ibm.com/api/qiskit-ibm-runtime/qiskit_ibm_runtime.QiskitRuntimeService#run>`__
`qiskit_ibm_runtime.QiskitRuntimeService.run() <https://docs.quantum.ibm.com/api/qiskit-ibm-runtime/0.29/qiskit_ibm_runtime.QiskitRuntimeService#run>`__
method. If a pair is specified, the first one is used to decode
interim results and the second the final results.

Expand Down
2 changes: 1 addition & 1 deletion release-notes/0.9.1.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Deprecation Notes
-----------------

- ``backend`` is no longer a supported option when using
`qiskit_ibm_runtime.Session.run() <https://docs.quantum.ibm.com/api/qiskit-ibm-runtime/qiskit_ibm_runtime.Session#run>`__.
`qiskit_ibm_runtime.Session.run() <https://docs.quantum.ibm.com/api/qiskit-ibm-runtime/0.29/qiskit_ibm_runtime.Session#run>`__.
Sessions do not support multiple cross backends. Additionally, an
exception will be raised if a backend passed in through options does
not match the original session backend in an active session.
Expand Down
2 changes: 1 addition & 1 deletion release-notes/0.9.2.rst
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ Bug Fixes
``None``, causing the job to fail.

- If an instance is passed in to
`qiskit_ibm_runtime.QiskitRuntimeService.get_backend() <https://docs.quantum.ibm.com/api/qiskit-ibm-runtime/qiskit_ibm_runtime.QiskitRuntimeService#get_backend>`__
`qiskit_ibm_runtime.QiskitRuntimeService.get_backend() <https://docs.quantum.ibm.com/api/qiskit-ibm-runtime/0.29/qiskit_ibm_runtime.QiskitRuntimeService#get_backend>`__
and then the backend is used in a session, all jobs within the
session will be run from the original instance passed in.

Expand Down
2 changes: 1 addition & 1 deletion release-notes/0.9.3.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Upgrade Notes
`QiskitRuntimeService <https://docs.quantum.ibm.com/api/qiskit-ibm-runtime/qiskit_ibm_runtime.QiskitRuntimeService>`__
is initialized. Instead, the configuration is only loaded and cached
during
`get_backend() <https://docs.quantum.ibm.com/api/qiskit-ibm-runtime/qiskit_ibm_runtime.QiskitRuntimeService#get_backend>`__
`get_backend() <https://docs.quantum.ibm.com/api/qiskit-ibm-runtime/0.29/qiskit_ibm_runtime.QiskitRuntimeService#get_backend>`__
and
`backends() <https://docs.quantum.ibm.com/api/qiskit-ibm-runtime/qiskit_ibm_runtime.QiskitRuntimeService#backends>`__.

Expand Down
2 changes: 1 addition & 1 deletion release-notes/0.9.4.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Deprecation Notes
the ``auth`` parameter has been removed. Additionally, the
``instance``, ``job_tags``, and ``max_execution_time`` paramters have
been removed from
`qiskit_ibm_runtime.QiskitRuntimeService.run() <https://docs.quantum.ibm.com/api/qiskit-ibm-runtime/qiskit_ibm_runtime.QiskitRuntimeService#run>`__.
`qiskit_ibm_runtime.QiskitRuntimeService.run() <https://docs.quantum.ibm.com/api/qiskit-ibm-runtime/0.29/qiskit_ibm_runtime.QiskitRuntimeService#run>`__.
They can be passed in through
`RuntimeOptions <https://docs.quantum.ibm.com/api/qiskit-ibm-runtime/0.25/qiskit_ibm_runtime.RuntimeOptions>`__ instead.

Expand Down