Skip to content

Commit

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

* Add RuntimeJobTiimeoutError to job result doc string

* Add release note for session aware scheduling
  • Loading branch information
rathishcholarajan authored Jun 20, 2022
1 parent 605d229 commit 67c11b6
Show file tree
Hide file tree
Showing 13 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
# The short X.Y version
version = ''
# The full version, including alpha/beta/rc tags
release = '0.4.0'
release = '0.5.0'

# -- General configuration ---------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion qiskit_ibm_runtime/VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.4.0
0.5.0
1 change: 1 addition & 0 deletions qiskit_ibm_runtime/runtime_job.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,7 @@ def result(
Raises:
RuntimeJobFailureError: If the job failed.
RuntimeJobTimeoutError: If the job does not complete within given timeout.
"""
_decoder = decoder or self._result_decoder
if self._results is None or (_decoder != self._result_decoder):
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
prelude: >
This release leverages the API and Queue enhancements to become
more runtime session aware. As a result when using the primitives (sampler and estimator),
runtime jobs in the same session will skip to the front of the queue,
thereby speeding up the runtime session, once it has started.

0 comments on commit 67c11b6

Please sign in to comment.