From cf6f9be13ce12ed65044703366bdb396171477af Mon Sep 17 00:00:00 2001 From: Jay Soni Date: Tue, 14 Dec 2021 03:18:09 -0500 Subject: [PATCH] Version bump (#168) * Version bump s Please enter the commit message for your changes. Lines starting * add pl version Co-authored-by: Josh Izaac --- CHANGELOG.md | 8 +------- pennylane_qiskit/_version.py | 2 +- pennylane_qiskit/qiskit_device.py | 2 +- requirements.txt | 2 +- setup.py | 2 +- 5 files changed, 5 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b80f45e45..8b6149d54 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -# Release 0.19.0-dev +# Release 0.20.0 ### New features since last release @@ -10,8 +10,6 @@ [(#163)](https://github.com/PennyLaneAI/pennylane-qiskit/pull/163) [(#167)](https://github.com/PennyLaneAI/pennylane-qiskit/pull/167) -### Breaking changes - ### Improvements * Added native support for the `qml.Identity` operation to the Qiskit devices and converters. @@ -26,10 +24,6 @@ * Added support for Python 3.10. [(#170)](https://github.com/PennyLaneAI/pennylane-forest/pull/170) -### Documentation - -### Bug fixes - ### Contributors This release contains contributions from (in alphabetical order): diff --git a/pennylane_qiskit/_version.py b/pennylane_qiskit/_version.py index ebcb6339b..0c2c7c68f 100644 --- a/pennylane_qiskit/_version.py +++ b/pennylane_qiskit/_version.py @@ -16,4 +16,4 @@ Version number (major.minor.patch[-label]) """ -__version__ = "0.19.0-dev" +__version__ = "0.20.0" diff --git a/pennylane_qiskit/qiskit_device.py b/pennylane_qiskit/qiskit_device.py index 8fd9e2cfb..2e071e4de 100644 --- a/pennylane_qiskit/qiskit_device.py +++ b/pennylane_qiskit/qiskit_device.py @@ -87,7 +87,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.17.0" + pennylane_requires = ">=0.20.0" version = __version__ plugin_version = __version__ author = "Xanadu" diff --git a/requirements.txt b/requirements.txt index 81915e56d..09a6c6b6d 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ qiskit>=0.25 -git+https://github.com/PennyLaneAI/pennylane.git +pennylane>=0.20 numpy sympy networkx>=2.2;python_version>'3.5' diff --git a/setup.py b/setup.py index cb8fb67fd..3d6efcaf9 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ requirements = [ "qiskit>=0.25", - "pennylane>=0.17", + "pennylane>=0.20", "numpy", "networkx>=2.2", ]