Skip to content

Commit

Permalink
Prepare for 0.12 release (#47)
Browse files Browse the repository at this point in the history
* Update changelog

* Update versions

* Fix wheels

* Apply suggestions from code review

Co-authored-by: antalszava <antalszava@gmail.com>

* Fix github link (#49)

Co-authored-by: antalszava <antalszava@gmail.com>
  • Loading branch information
trbromley and antalszava committed Oct 20, 2020
1 parent 5ab7a14 commit a1fd14c
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 15 deletions.
1 change: 0 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ jobs:
run: |
cd main
python -m pip install --upgrade pip
pip install git+https://github.com/PennyLaneAI/pennylane.git
pip install -r requirements.txt
- name: Install lightning.qubit device
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ jobs:
- name: Install cibuildwheel
run: |
python -m pip install --upgrade pip
pip install git+https://github.com/PennyLaneAI/pennylane.git
python -m pip install cibuildwheel==1.5.5
- name: Install Eigen on Windows
Expand Down
16 changes: 8 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
# Release 0.12.0-dev
# Release 0.12.0

### New features since last release

### Breaking changes
### Bug fixes

### Improvements
* Updates capabilities dictionary to be compatible with core PennyLane
[(#45)](https://github.com/PennyLaneAI/pennylane-lightning/pull/45)

### Documentation

### Bug fixes
* Fix install of Eigen for CI wheel building
[(#44)](https://github.com/PennyLaneAI/pennylane-lightning/pull/44)

### Contributors

This release contains contributions from (in alphabetical order):

Tom Bromley, Josh Izaac, Antal Száva

---

# Release 0.11.0
Expand Down
2 changes: 1 addition & 1 deletion doc/xanadu_theme/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://github.com/XanaduAI/pennyLane-hqs">
<a class="nav-link" href="https://github.com/XanaduAI/pennyLane-lightning">
<i class="fab fa-github"></i> GitHub
</a>
</li>
Expand Down
2 changes: 1 addition & 1 deletion pennylane_lightning/_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"
2 changes: 1 addition & 1 deletion pennylane_lightning/lightning_qubit.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class LightningQubit(DefaultQubit):

name = "Lightning Qubit PennyLane plugin"
short_name = "lightning.qubit"
pennylane_requires = ">=0.11"
pennylane_requires = ">=0.12"
version = __version__
author = "Xanadu Inc."

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
flaky
numpy
pennylane>=0.11
pennylane>=0.12
pybind11
pytest
pytest-cov
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ def build_extensions(self):

requirements = [
"numpy",
"pennylane @ git+https://github.com/PennyLaneAI/pennylane.git",
"pennylane>=0.12.0",
"pybind11",
]

Expand Down

0 comments on commit a1fd14c

Please sign in to comment.