Skip to content

Commit 67c11b6

Browse files
Prepare release 0.5.0 (#381)
* Prepare release 0.5.0 * Add RuntimeJobTiimeoutError to job result doc string * Add release note for session aware scheduling
1 parent 605d229 commit 67c11b6

13 files changed

+9
-2
lines changed

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
# The short X.Y version
4747
version = ''
4848
# The full version, including alpha/beta/rc tags
49-
release = '0.4.0'
49+
release = '0.5.0'
5050

5151
# -- General configuration ---------------------------------------------------
5252

qiskit_ibm_runtime/VERSION.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.4.0
1+
0.5.0

qiskit_ibm_runtime/runtime_job.py

+1
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,7 @@ def result(
173173
174174
Raises:
175175
RuntimeJobFailureError: If the job failed.
176+
RuntimeJobTimeoutError: If the job does not complete within given timeout.
176177
"""
177178
_decoder = decoder or self._result_decoder
178179
if self._results is None or (_decoder != self._result_decoder):
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
prelude: >
3+
This release leverages the API and Queue enhancements to become
4+
more runtime session aware. As a result when using the primitives (sampler and estimator),
5+
runtime jobs in the same session will skip to the front of the queue,
6+
thereby speeding up the runtime session, once it has started.

0 commit comments

Comments
 (0)