Skip to content

Commit

Permalink
increment version number to 0.14.0 (#128)
Browse files Browse the repository at this point in the history
* increment version number to 0.14.0

* bump versions in setup.py

Co-authored-by: Josh Izaac <[email protected]>
  • Loading branch information
albi3ro and josh146 authored Feb 2, 2021
1 parent 224f7f4 commit c1b1c81
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 14 deletions.
15 changes: 7 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand All @@ -15,8 +15,7 @@

This release contains contributions from (in alphabetical order):

Christina Lee

Christina Lee, Antal Szava
---

# Release 0.13.0
Expand Down
2 changes: 1 addition & 1 deletion pennylane_qiskit/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@
Version number (major.minor.patch[-label])
"""

__version__ = "0.14.0-dev"
__version__ = "0.14.0"
2 changes: 1 addition & 1 deletion pennylane_qiskit/qiskit_device.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -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'
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit c1b1c81

Please sign in to comment.