Skip to content

Commit fcee52a

Browse files
Version Bump (#103) (#106)
* Version Bump (#103) * pre release version bump * bump pl ver for failed latest-stable * set up sync with 0.44 --------- Co-authored-by: JerryChen97 <JerryChen97@users.noreply.github.com> Co-authored-by: JerryChen97 <chenys13@outlook.com> * add 3.14 * add log * contributors * typo --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: JerryChen97 <JerryChen97@users.noreply.github.com>
1 parent b5ac48c commit fcee52a

File tree

5 files changed

+16
-11
lines changed

5 files changed

+16
-11
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
python-version: ['3.11', '3.12', '3.13']
13+
python-version: ['3.11', '3.12', '3.13', '3.14']
1414

1515
steps:
1616
- name: Cancel Previous Runs

CHANGELOG.md

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,25 @@
1-
# Release 0.44.0-dev
2-
3-
### New features since last release
1+
# Release 0.44.0
42

53
### Improvements 🛠
64

7-
### Breaking changes 💔
5+
* Added support for Python 3.14.
6+
[(#106)](https://github.com/PennyLaneAI/pennylane-aqt/pull/106)
87

9-
### Deprecations 👋
8+
### Internal changes ⚙️
109

11-
### Documentation 📝
10+
* Upgraded Sphinx to version 8.1.
11+
[(#101)](https://github.com/PennyLaneAI/pennylane-aqt/pull/101)
1212

13-
### Bug fixes 🐛
13+
* Fix `default_config` access in tests.
14+
[(#102)](https://github.com/PennyLaneAI/pennylane-aqt/pull/102)
1415

1516
### Contributors ✍️
1617

1718
This release contains contributions from (in alphabetical order):
1819

20+
Runor Agbaire,
21+
Yushao Chen.
22+
1923
---
2024
# Release 0.43.0
2125

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.44.0-dev"
19+
__version__ = "0.44.0"

pennylane_aqt/device.py

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

5050
# pylint: disable=too-many-instance-attributes
5151
name = "Alpine Quantum Technologies PennyLane plugin"
52-
pennylane_requires = ">=0.43.0"
52+
pennylane_requires = ">=0.44.0"
5353
version = __version__
5454
author = "Xanadu Inc."
5555
_capabilities = {

setup.py

Lines changed: 2 additions & 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.43", "requests"]
27+
requirements = ["pennylane>=0.44", "requests"]
2828

2929
info = {
3030
# 'name' is the name that will be used by pip for installation
@@ -74,6 +74,7 @@
7474
"Programming Language :: Python :: 3.11",
7575
"Programming Language :: Python :: 3.12",
7676
"Programming Language :: Python :: 3.13",
77+
"Programming Language :: Python :: 3.14",
7778
"Programming Language :: Python :: 3 :: Only",
7879
"Topic :: Scientific/Engineering :: Physics",
7980
]

0 commit comments

Comments
 (0)