From a9a91a93fd9b8d4d7449573eb426e6c438dd124d Mon Sep 17 00:00:00 2001 From: Christina Lee Date: Tue, 17 Aug 2021 03:41:52 +0100 Subject: [PATCH] Incrementing the version number to 0.17.0 (#146) * increment version * Update CHANGELOG.md Co-authored-by: antalszava * requirements and device attributes * Update requirements.txt Co-authored-by: antalszava * update setup Co-authored-by: antalszava --- CHANGELOG.md | 14 ++++++-------- pennylane_qiskit/_version.py | 2 +- pennylane_qiskit/qiskit_device.py | 2 +- requirements.txt | 2 +- setup.py | 2 +- 5 files changed, 10 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7cf2c010a..2d5dad32b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,19 +1,17 @@ -# Release 0.17.0-dev - -### New features since last release - -### Breaking changes +# Release 0.17.0 ### Improvements -### Documentation - -### Bug fixes +* Removed a validation check for `qml.QubitUnitary` that existed in the device and + adjusted a related test case. + [(#144)](https://github.com/PennyLaneAI/pennylane-qiskit/pull/144) ### Contributors This release contains contributions from (in alphabetical order): +Christina Lee, Antal Száva + --- # Release 0.16.0 diff --git a/pennylane_qiskit/_version.py b/pennylane_qiskit/_version.py index aca746a7f..7524f9d46 100644 --- a/pennylane_qiskit/_version.py +++ b/pennylane_qiskit/_version.py @@ -16,4 +16,4 @@ Version number (major.minor.patch[-label]) """ -__version__ = "0.17.0-dev" +__version__ = "0.17.0" diff --git a/pennylane_qiskit/qiskit_device.py b/pennylane_qiskit/qiskit_device.py index 2fc789daa..3d3a5ae95 100644 --- a/pennylane_qiskit/qiskit_device.py +++ b/pennylane_qiskit/qiskit_device.py @@ -85,7 +85,7 @@ class QiskitDevice(QubitDevice, abc.ABC): to simulate a device compliant circuit, you can specify a backend here. """ name = "Qiskit PennyLane plugin" - pennylane_requires = ">=0.16.0" + pennylane_requires = ">=0.17.0" version = __version__ plugin_version = __version__ author = "Xanadu" diff --git a/requirements.txt b/requirements.txt index 0e241240c..5b733801e 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ qiskit>=0.25 -git+https://github.com/PennyLaneAI/pennylane.git@master +pennylane>=0.17 numpy sympy networkx>=2.2;python_version>'3.5' diff --git a/setup.py b/setup.py index 9824cd0be..86f32af5b 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ requirements = [ "qiskit>=0.25", - "pennylane>=0.16", + "pennylane>=0.17", "numpy", "networkx>=2.2", ]