Skip to content

Commit

Permalink
Incrementing the version number to 0.17.0 (#146)
Browse files Browse the repository at this point in the history
* increment version

* Update CHANGELOG.md

Co-authored-by: antalszava <[email protected]>

* requirements and device attributes

* Update requirements.txt

Co-authored-by: antalszava <[email protected]>

* update setup

Co-authored-by: antalszava <[email protected]>
  • Loading branch information
albi3ro and antalszava authored Aug 17, 2021
1 parent 00a47d2 commit a9a91a9
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 12 deletions.
14 changes: 6 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
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.17.0-dev"
__version__ = "0.17.0"
2 changes: 1 addition & 1 deletion pennylane_qiskit/qiskit_device.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -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'
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

requirements = [
"qiskit>=0.25",
"pennylane>=0.16",
"pennylane>=0.17",
"numpy",
"networkx>=2.2",
]
Expand Down

0 comments on commit a9a91a9

Please sign in to comment.