From 95875ea1d7fec35e1ee62bea2645fa751e774766 Mon Sep 17 00:00:00 2001 From: Dean Poulos Date: Wed, 23 Oct 2024 15:59:24 +1100 Subject: [PATCH 1/3] Fix typo in README. --- qualang_tools/wirer/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qualang_tools/wirer/README.md b/qualang_tools/wirer/README.md index 7b0e83e9..6859d7e5 100644 --- a/qualang_tools/wirer/README.md +++ b/qualang_tools/wirer/README.md @@ -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 From fb5f1f392987e9f37d9a541324484aadaa581ee6 Mon Sep 17 00:00:00 2001 From: Dean Poulos Date: Wed, 23 Oct 2024 16:01:12 +1100 Subject: [PATCH 2/3] Update changelog and bump version. --- CHANGELOG.md | 3 +++ pyproject.toml | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7b62f094..11119c43 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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.17.8] - 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. @@ -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.17.8]: https://github.com/qua-platform/py-qua-tools/compare/v0.17.7...v0.17.8 [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 diff --git a/pyproject.toml b/pyproject.toml index d2c3918a..518aafd2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "qualang-tools" -version = "v0.17.7" +version = "v0.17.8" description = "The qualang_tools package includes various tools related to QUA programs in Python" authors = ["Quantum Machines "] license = "BSD-3-Clause" From 592e10bcca848e6c1db27aa401231acfd841df68 Mon Sep 17 00:00:00 2001 From: Dean Poulos Date: Wed, 23 Oct 2024 17:08:48 +1100 Subject: [PATCH 3/3] Increment minor version since it's a new feature. --- CHANGELOG.md | 4 ++-- pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 11119c43..ddcc9b04 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) ## [Unreleased] -## [0.17.8] - 2024-10-23 +## [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. @@ -377,7 +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.17.8]: https://github.com/qua-platform/py-qua-tools/compare/v0.17.7...v0.17.8 +[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 diff --git a/pyproject.toml b/pyproject.toml index 518aafd2..eccc1c89 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "qualang-tools" -version = "v0.17.8" +version = "v0.18.0" description = "The qualang_tools package includes various tools related to QUA programs in Python" authors = ["Quantum Machines "] license = "BSD-3-Clause"