Skip to content

Commit

Permalink
Incrementing the version number to 0.12.0 (#111)
Browse files Browse the repository at this point in the history
* changelog pyscf pr

* changelog keep only used section

* version

* device version

* Update upload.yml

* Update CHANGELOG.md

* bumps

* update changelog

Co-authored-by: Josh Izaac <[email protected]>
  • Loading branch information
antalszava and josh146 authored Oct 20, 2020
1 parent bd0f9e2 commit b63f923
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/upload.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Upload
on:
release:
types: [created]
types: [published]

jobs:
upload:
Expand Down
15 changes: 8 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
# Release 0.12.0-dev

### New features since last release

### Breaking changes
# Release 0.12.0

### Improvements

### Documentation
* The provided devices are now compatible with Qiskit 0.23.
[(#112)](https://github.com/PennyLaneAI/pennylane-qiskit/pull/112)

### Bug fixes

* Removes PySCF from the plugin `setup.py` and `requirements.txt`.
[(#103)](https://github.com/PennyLaneAI/pennylane-qiskit/pull/103)
[(#104)](https://github.com/PennyLaneAI/pennylane-qiskit/pull/104)

* Fixed a bug related to extracting differentiable parameters for the Qiskit
converter and PennyLane array indexing.
[(#106)](https://github.com/PennyLaneAI/pennylane-qiskit/pull/106)
Expand All @@ -18,7 +19,7 @@

This release contains contributions from (in alphabetical order):

Josh Izaac, Antal Száva
Josh Izaac, Nathan Killoran, Antal Száva

---

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.12.0-dev"
__version__ = "0.12.0"
4 changes: 2 additions & 2 deletions pennylane_qiskit/qiskit_device.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,8 @@ class QiskitDevice(QubitDevice, abc.ABC):
Default value is ``False``.
"""
name = "Qiskit PennyLane plugin"
pennylane_requires = ">=0.11.0"
version = "0.11.0"
pennylane_requires = ">=0.12.0"
version = "0.12.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,5 +1,5 @@
qiskit>=0.23
pennylane>=0.11.0
pennylane>=0.12.0
numpy
networkx>=2.2;python_version>'3.5'
networkx>=2.2,<2.4;python_version=='3.5'
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.23",
"pennylane>=0.11.0",
"pennylane>=0.12.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 b63f923

Please sign in to comment.