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

Prepare release of 0.8 #759

Merged
merged 4 commits into from
Mar 28, 2023
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
22 changes: 22 additions & 0 deletions RELEASE_NOTES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,28 @@

.. towncrier release notes start

qupulse 0.8 (2023-03-28)
========================

Features
--------

- New two dimensional plotting function ``qupulse.pulses.plotting.plot_2d``. (`#703 <https://github.com/qutech/qupulse/issues/703>`_)
- Add support for time dependent expressions for arithmetics with atomic pulse templates i.e. ``ParallelChannelPT`` and
``ArithmeticPT`` support time dependent expressions if used with atomic pulse templates.
Rename ``ParallelConstantChannelPT`` to ``ParallelChannelPT`` to reflect this change. (`#709 <https://github.com/qutech/qupulse/issues/709>`_)
- Add ``with_`` family of helper methods to ``PulseTemplate`` to allow convinient and easily discoverable pulse template
combination. (`#710 <https://github.com/qutech/qupulse/issues/710>`_)
- The plotting module is now located at `qupulse.plotting`. There is a legacy alias at `qupulse.pulses.plotting`. (`#735 <https://github.com/qutech/qupulse/issues/735>`_)


Deprecations and Removals
-------------------------

- Remove the ``Parameter``, ``MappedParameter`` and ``ConstantParameter`` classes that where deprecated in version 0.5. (`#512 <https://github.com/qutech/qupulse/issues/512>`_)
- Drop support for python version 3.7. (`#760 <https://github.com/qutech/qupulse/issues/760>`_)


qupulse 0.7 (2022-10-05)
========================

Expand Down
1 change: 0 additions & 1 deletion changes.d/512.removal

This file was deleted.

2 changes: 1 addition & 1 deletion changes.d/696.fix
Original file line number Diff line number Diff line change
@@ -1 +1 @@
`ConstantPulseTemplate`s from all versions can now be deserialized.
``ConstantPulseTemplate``s from all versions can now be deserialized.
1 change: 0 additions & 1 deletion changes.d/703.feature

This file was deleted.

3 changes: 0 additions & 3 deletions changes.d/709.feature

This file was deleted.

2 changes: 0 additions & 2 deletions changes.d/710.feature

This file was deleted.

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

This file was deleted.

1 change: 0 additions & 1 deletion changes.d/760.removal

This file was deleted.

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.7'
__version__ = '0.8'

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

Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ filterwarnings =

[build_sphinx]
project = 'qupulse'
version = 0.5
release = 0.5rc
version = 0.8
release = 0.8
source-dir = ./doc/source
build-dir = ./doc/build
fresh-env = 1