Skip to content

Commit

Permalink
Incrementing the version number to 0.8.0 (#66)
Browse files Browse the repository at this point in the history
* Incrementing version number and modifying CHANGELOG

* Increase qiskit requirement in requirements.txt and setup.py
  • Loading branch information
antalszava authored Feb 4, 2020
1 parent 2638a81 commit 7e84d4c
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 9 deletions.
22 changes: 17 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
# Release 0.7.1
# Release 0.8.0

### Bug fixes

* Set `analytic=False` as default, since by default warnings are raised
for hardware simulators.
[#64](https://github.com/XanaduAI/pennylane-qiskit/pull/64)

* Removed v1 `IBMQ` credentials, disallowed `unitary_simulator` backend to
have `memory=True` and discontinuing support for `QubitStateVector` on
the `unitary_simulator` backend due to Qiskit's 0.14.0 version.
Expand All @@ -19,6 +15,22 @@ Antal Száva

---

# Release 0.7.1

### Bug fixes

* Set `analytic=False` as default, since by default warnings are raised
for hardware simulators.
[#64](https://github.com/XanaduAI/pennylane-qiskit/pull/64)

### Contributors

This release contains contributions from (in alphabetical order):

Antal Száva

---

# Release 0.7.0

### New features since last release
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.7.1"
__version__ = "0.8.0"
2 changes: 1 addition & 1 deletion pennylane_qiskit/qiskit_device.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ class QiskitDevice(Device, abc.ABC):
"""
name = "Qiskit PennyLane plugin"
pennylane_requires = ">=0.7.0"
version = "0.7.0"
version = "0.8.0"
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,4 +1,4 @@
qiskit>=0.12
qiskit>=0.14
PennyLane>=0.7.0
numpy
networkx==2.3
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
long_description = fh.read()

requirements = [
"qiskit>=0.12",
"qiskit>=0.14",
"pennylane>=0.7.0",
"numpy"
]
Expand Down

0 comments on commit 7e84d4c

Please sign in to comment.