Skip to content

Commit f92e73b

Browse files
incrementing the version number to v0.42.0 (#92)
* pre release version bump * Fix auto-generated PR to be for v0.42.0 release * update versions in setup, requirements and device * add changelog entry * Update requirements.txt --------- Co-authored-by: andrijapau <andrijapau@users.noreply.github.com> Co-authored-by: Andrija Paurevic <46359773+andrijapau@users.noreply.github.com> Co-authored-by: andrijapau <andrija.paurevic@xanadu.ai>
1 parent 3a0a8e9 commit f92e73b

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
1-
# Release 0.42.0-dev
1+
# Release 0.42.0
22

33
### New features since last release
44

55
### Improvements 🛠
66

77
### Breaking changes 💔
8+
9+
* Upgrade minimum supported version of PennyLane to 0.42.0.
10+
[(#92)](https://github.com/PennyLaneAI/pennylane-aqt/pull/92)
811

912
### Deprecations 👋
1013

pennylane_aqt/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@
1616
Version number (major.minor.patch[-label])
1717
"""
1818

19-
__version__ = "0.42.0-dev"
19+
__version__ = "0.42.0"

pennylane_aqt/device.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ class AQTDevice(QubitDevice):
5151

5252
# pylint: disable=too-many-instance-attributes
5353
name = "Alpine Quantum Technologies PennyLane plugin"
54-
pennylane_requires = ">=0.38.0"
54+
pennylane_requires = ">=0.42.0"
5555
version = __version__
5656
author = "Xanadu Inc."
5757
_capabilities = {

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
# Requirements should be as minimal as possible.
2525
# Avoid pinning, and use minimum version numbers
2626
# only where required.
27-
requirements = ["pennylane>=0.38", "requests"]
27+
requirements = ["pennylane>=0.42", "requests"]
2828

2929
info = {
3030
# 'name' is the name that will be used by pip for installation

0 commit comments

Comments
 (0)