From fd2d7c0db65a438b6324b04ebacbb75d793148b1 Mon Sep 17 00:00:00 2001 From: Eric Arellano <14852634+Eric-Arellano@users.noreply.github.com> Date: Tue, 24 Sep 2024 13:21:20 -0400 Subject: [PATCH] Fix broken links in release notes (#1947) --- release-notes/0.5.0.rst | 4 ++-- release-notes/0.7.0.rst | 2 +- release-notes/0.8.0.rst | 2 +- release-notes/0.9.1.rst | 2 +- release-notes/0.9.2.rst | 2 +- release-notes/0.9.3.rst | 2 +- release-notes/0.9.4.rst | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/release-notes/0.5.0.rst b/release-notes/0.5.0.rst index e7107fa8b..1f2f6833e 100644 --- a/release-notes/0.5.0.rst +++ b/release-notes/0.5.0.rst @@ -79,12 +79,12 @@ Upgrade Notes `jobs() `__ with the parameter ``session_id``. -- `run() `__ now +- `run() `__ now supports a new parameter, ``job_tags``. These tags can be used when filtering jobs with `jobs() `__. -- `run() `__ now +- `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. diff --git a/release-notes/0.7.0.rst b/release-notes/0.7.0.rst index 890ff8273..20bd42a6c 100644 --- a/release-notes/0.7.0.rst +++ b/release-notes/0.7.0.rst @@ -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() `__ + `qiskit_ibm_runtime.QiskitRuntimeService.run() `__ has been deprecated. Instead, you can pass the ``instance`` parameter inside the ``options`` parameter. diff --git a/release-notes/0.8.0.rst b/release-notes/0.8.0.rst index 0d5da0c5c..78d30f25b 100644 --- a/release-notes/0.8.0.rst +++ b/release-notes/0.8.0.rst @@ -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() `__ + `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. diff --git a/release-notes/0.9.1.rst b/release-notes/0.9.1.rst index 0437fd862..de1b73be4 100644 --- a/release-notes/0.9.1.rst +++ b/release-notes/0.9.1.rst @@ -26,7 +26,7 @@ Deprecation Notes ----------------- - ``backend`` is no longer a supported option when using - `qiskit_ibm_runtime.Session.run() `__. + `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. diff --git a/release-notes/0.9.2.rst b/release-notes/0.9.2.rst index dd355cceb..bad419b99 100644 --- a/release-notes/0.9.2.rst +++ b/release-notes/0.9.2.rst @@ -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() `__ + `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. diff --git a/release-notes/0.9.3.rst b/release-notes/0.9.3.rst index 5e76eb429..856447d20 100644 --- a/release-notes/0.9.3.rst +++ b/release-notes/0.9.3.rst @@ -16,7 +16,7 @@ Upgrade Notes `QiskitRuntimeService `__ is initialized. Instead, the configuration is only loaded and cached during - `get_backend() `__ + `get_backend() `__ and `backends() `__. diff --git a/release-notes/0.9.4.rst b/release-notes/0.9.4.rst index 55a83ea84..cada7f49a 100644 --- a/release-notes/0.9.4.rst +++ b/release-notes/0.9.4.rst @@ -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() `__. + `qiskit_ibm_runtime.QiskitRuntimeService.run() `__. They can be passed in through `RuntimeOptions `__ instead.