Skip to content
This repository has been archived by the owner on Jul 28, 2023. It is now read-only.

Commit

Permalink
Prepare release 0.19.2 (#1136)
Browse files Browse the repository at this point in the history
* Make cron jobs manually triggerable

* Prepare release 0.19.2
  • Loading branch information
rathishcholarajan committed Jun 21, 2022
1 parent 3dcfd8a commit 14c1af4
Show file tree
Hide file tree
Showing 4 changed files with 22 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.19.1'
release = '0.19.2'

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

Expand Down
2 changes: 1 addition & 1 deletion qiskit/providers/ibmq/VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.19.1
0.19.2
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
fixes:
- |
In the upcoming terra release there will be a release candidate tagged
prior to the final release. However changing the version string for the
package is blocked on the qiskit-ibmq-provider right now because it is trying
to parse the version and is assuming there will be no prelease suffix on
the version string (see `#8200 <https://github.com/Qiskit/qiskit-terra/pull/8200>`__
for the details). PR `#1135 <https://github.com/Qiskit/qiskit-ibmq-provider/pull/1135>`__
fixes this version parsing to use the regex from the
pypa/packaging project which handles all the PEP440 package versioning
include pre-release suffixes. This will enable terra to release an
0.21.0rc1 tag without breaking the qiskit-ibmq-provider.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
fixes:
- |
``threading.currentThread`` and ``notifyAll`` were deprecated in Python 3.10 (October 2021)
and will be removed in Python 3.12 (October 2023).
PR `#1133 <https://github.com/Qiskit/qiskit-ibmq-provider/pull/1133>`__ replaces them
with ``threading.current_thread``, ``notify_all`` added in Python 2.6 (October 2008).

0 comments on commit 14c1af4

Please sign in to comment.