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

Bump version to 0.18.0 #236

Merged
merged 3 commits into from
Oct 23, 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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)

## [Unreleased]

## [0.18.0] - 2024-10-23
### Added
- results - Allow the data saver to create the root folder if it doesn't exist.
- wirer - Automatic tool to allocate channels for arbitrary combinations of QM instruments and superconducting qubits.
Expand Down Expand Up @@ -375,6 +377,7 @@ operation (readout pulse for instance) already defined in the configuration.
- This release exposes the baking, RB and XEB functionality.

[Unreleased]: https://github.com/qua-platform/py-qua-tools/compare/v0.17.7...HEAD
[0.18.0]: https://github.com/qua-platform/py-qua-tools/compare/v0.17.7...v0.18.0
[0.17.7]: https://github.com/qua-platform/py-qua-tools/compare/v0.17.6...v0.17.7
[0.17.6]: https://github.com/qua-platform/py-qua-tools/compare/v0.17.5...v0.17.6
[0.17.5]: https://github.com/qua-platform/py-qua-tools/compare/v0.17.4...v0.17.5
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "qualang-tools"
version = "v0.17.7"
version = "v0.18.0"
description = "The qualang_tools package includes various tools related to QUA programs in Python"
authors = ["Quantum Machines <[email protected]>"]
license = "BSD-3-Clause"
Expand Down
4 changes: 2 additions & 2 deletions qualang_tools/wirer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,8 @@ instruments.add_octave(indices=[1, 3, 8])
```
```python
# Disjoint OPX+ and Octave addressing
instruments.add_opx_plus(controllers=[2, 5])
instruments.add_octave(indices=[1, 3, 8])
instruments.add_lf_fem(controller=3, slots=[2, 4])
instruments.add_mw_fem(controller=3, slots=[1, 7])
```

## Connectivity
Expand Down
Loading