From c1b1c8149a2f555e728cb15f10c810151a380763 Mon Sep 17 00:00:00 2001 From: Christina Lee Date: Tue, 2 Feb 2021 02:52:51 -0600 Subject: [PATCH] increment version number to 0.14.0 (#128) * increment version number to 0.14.0 * bump versions in setup.py Co-authored-by: Josh Izaac --- CHANGELOG.md | 15 +++++++-------- pennylane_qiskit/_version.py | 2 +- pennylane_qiskit/qiskit_device.py | 2 +- requirements.txt | 4 ++-- setup.py | 4 ++-- 5 files changed, 13 insertions(+), 14 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 548379ee3..c7abe5768 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,12 @@ -# Release 0.14.0-dev +# Release 0.14.0 -### New features +### Bug fixes -### Improvements +* With the release of Qiskit 0.23.3 gate parameters cannot be arrays. The device now converts arrays to lists. + [(#126)](https://github.com/PennyLaneAI/pennylane-qiskit/pull/126) -### Documentation - -### Bug fixes +* When parsing the IBMQ token and the IBMQ URL, the values passed as keywords take precedence over environment variables. + [(#121)](https://github.com/PennyLaneAI/pennylane-qiskit/pull/121) * When loading Qiskit circuits to PennyLane templates using `load` in `converter.py`, parameters with `requires_grad=False` are bound to the circuit. The old version bound objects that were not PennyLane `Variable`'s, but that object class is now deprecated. [(#127)](https://github.com/PennyLaneAI/pennylane-qiskit/pull/127) @@ -15,8 +15,7 @@ This release contains contributions from (in alphabetical order): -Christina Lee - +Christina Lee, Antal Szava --- # Release 0.13.0 diff --git a/pennylane_qiskit/_version.py b/pennylane_qiskit/_version.py index db0c6163c..8bdffc6cc 100644 --- a/pennylane_qiskit/_version.py +++ b/pennylane_qiskit/_version.py @@ -16,4 +16,4 @@ Version number (major.minor.patch[-label]) """ -__version__ = "0.14.0-dev" +__version__ = "0.14.0" diff --git a/pennylane_qiskit/qiskit_device.py b/pennylane_qiskit/qiskit_device.py index cebb62982..efebd5562 100644 --- a/pennylane_qiskit/qiskit_device.py +++ b/pennylane_qiskit/qiskit_device.py @@ -88,7 +88,7 @@ class QiskitDevice(QubitDevice, abc.ABC): """ name = "Qiskit PennyLane plugin" pennylane_requires = ">=0.12.0" - version = "0.12.0" + version = "0.14.0" plugin_version = __version__ author = "Xanadu" diff --git a/requirements.txt b/requirements.txt index 2eb988b4d..ee1f33052 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ -qiskit>=0.23.1 -git+https://github.com/PennyLaneAI/pennylane.git +qiskit>=0.23.4 +pennylane>=0.14.0 numpy networkx>=2.2;python_version>'3.5' networkx>=2.2,<2.4;python_version=='3.5' diff --git a/setup.py b/setup.py index 6e2f96c63..457c2ae65 100644 --- a/setup.py +++ b/setup.py @@ -22,8 +22,8 @@ long_description = fh.read() requirements = [ - "qiskit>=0.23.1", - "pennylane>=0.13.0", + "qiskit>=0.23.4", + "pennylane>=0.14.0", "numpy", "networkx>=2.2;python_version>'3.5'", # Networkx 2.4 is the final version with python 3.5 support.