Skip to content

Commit 024a6ff

Browse files
author
Simon Humpohl
authored
Merge pull request #818 from qutech/release/0.10
Release 0.10
2 parents 107b1a6 + 8ba0412 commit 024a6ff

9 files changed

Lines changed: 21 additions & 8 deletions

File tree

RELEASE_NOTES.rst

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,25 @@
22

33
.. towncrier release notes start
44
5+
qupulse 0.10 (2024-04-04)
6+
=========================
7+
8+
Features
9+
--------
10+
11+
- Move HDAWG driver to qupulse-hdawg-legacy to disentangle driver version from qupulse version. The new HDAWG driver will be published under qupulse-hdawg. (`#779 <https://github.com/qutech/qupulse/issues/779>`_)
12+
- Add the `ProgramBuilder` interface pattern to make the generated program of `PulseTemplate.create_program` easily customizable. (`#781 <https://github.com/qutech/qupulse/issues/781>`_)
13+
- Measurement windows can now automatically shrank in case of overlap to counteract small numeric errors. (`#791 <https://github.com/qutech/qupulse/issues/791>`_)
14+
15+
16+
Bugfixes
17+
--------
18+
19+
- ``ConstantPulseTemplate``s from all versions can now be deserialized. (`#696 <https://github.com/qutech/qupulse/issues/696>`_)
20+
- Fixed that single segment tables where always interpreted to be constant. (`#707 <https://github.com/qutech/qupulse/issues/707>`_)
21+
- Add missing pulse registry support to `ArithmeticPT`. (`#775 <https://github.com/qutech/qupulse/issues/775>`_)
22+
23+
524
qupulse 0.9 (2023-11-08)
625
========================
726

changes.d/696.fix

Lines changed: 0 additions & 1 deletion
This file was deleted.

changes.d/707.fix

Lines changed: 0 additions & 1 deletion
This file was deleted.

changes.d/775.fix

Lines changed: 0 additions & 1 deletion
This file was deleted.

changes.d/779.feature

Lines changed: 0 additions & 1 deletion
This file was deleted.

changes.d/781.feature

Lines changed: 0 additions & 1 deletion
This file was deleted.

changes.d/791.feature

Lines changed: 0 additions & 1 deletion
This file was deleted.

doc/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181

8282
# General information about the project.
8383
project = 'qupulse'
84-
copyright = '2015-2022, Quantum Technology Group, RWTH Aachen University'
84+
copyright = '2015-2024, Quantum Technology Group, RWTH Aachen University'
8585
author = 'Quantum Technology Group and Chair of Software Engineering, RWTH Aachen University'
8686

8787
# The version info for the project you're documenting, acts as replacement for

qupulse/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import lazy_loader as lazy
44

5-
__version__ = '0.9'
5+
__version__ = '0.10'
66

77
__getattr__, __dir__, __all__ = lazy.attach_stub(__name__, __file__)
88

0 commit comments

Comments
 (0)