Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.10 #818

Merged
merged 3 commits into from
Apr 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions RELEASE_NOTES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,25 @@

.. towncrier release notes start

qupulse 0.10 (2024-04-04)
=========================

Features
--------

- 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>`_)
- Add the `ProgramBuilder` interface pattern to make the generated program of `PulseTemplate.create_program` easily customizable. (`#781 <https://github.com/qutech/qupulse/issues/781>`_)
- Measurement windows can now automatically shrank in case of overlap to counteract small numeric errors. (`#791 <https://github.com/qutech/qupulse/issues/791>`_)


Bugfixes
--------

- ``ConstantPulseTemplate``s from all versions can now be deserialized. (`#696 <https://github.com/qutech/qupulse/issues/696>`_)
- Fixed that single segment tables where always interpreted to be constant. (`#707 <https://github.com/qutech/qupulse/issues/707>`_)
- Add missing pulse registry support to `ArithmeticPT`. (`#775 <https://github.com/qutech/qupulse/issues/775>`_)


qupulse 0.9 (2023-11-08)
========================

Expand Down
1 change: 0 additions & 1 deletion changes.d/696.fix

This file was deleted.

1 change: 0 additions & 1 deletion changes.d/707.fix

This file was deleted.

1 change: 0 additions & 1 deletion changes.d/775.fix

This file was deleted.

1 change: 0 additions & 1 deletion changes.d/779.feature

This file was deleted.

1 change: 0 additions & 1 deletion changes.d/781.feature

This file was deleted.

1 change: 0 additions & 1 deletion changes.d/791.feature

This file was deleted.

2 changes: 1 addition & 1 deletion doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@

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

# The version info for the project you're documenting, acts as replacement for
Expand Down
2 changes: 1 addition & 1 deletion qupulse/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import lazy_loader as lazy

__version__ = '0.9'
__version__ = '0.10'

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

Expand Down
Loading