From a1a79f124fab2da6dbaf4dfe2f9e438c4eb21860 Mon Sep 17 00:00:00 2001 From: "Jens H. Nielsen" Date: Mon, 9 Sep 2024 09:41:47 +0200 Subject: [PATCH] Add changelog for 0.48.0 --- docs/changes/0.48.0.rst | 10 ++++++++++ docs/changes/index.rst | 1 + docs/changes/newsfragments/6394.improved | 1 - docs/changes/newsfragments/6422.improved | 3 --- 4 files changed, 11 insertions(+), 4 deletions(-) create mode 100644 docs/changes/0.48.0.rst delete mode 100644 docs/changes/newsfragments/6394.improved delete mode 100644 docs/changes/newsfragments/6422.improved diff --git a/docs/changes/0.48.0.rst b/docs/changes/0.48.0.rst new file mode 100644 index 00000000000..9a5f28a439d --- /dev/null +++ b/docs/changes/0.48.0.rst @@ -0,0 +1,10 @@ +QCoDeS 0.48.0 (2024-09-09) +========================== + +Improved: +--------- + +- Improve handling of corner cases where `Instrument.remove_parameter` could raise an exception. (:pr:`6394`) +- `dond` now takes an optional `squeeze` flag as input. Inspired by Matplotlib's `plt.subplots` argument + of the same name, this allows the user to always get the same type returned from the function if set to False. + This makes it easier to write type checked code that uses `dond` as a function. (:pr:`6422`) diff --git a/docs/changes/index.rst b/docs/changes/index.rst index f5726027505..442bf0efc8f 100644 --- a/docs/changes/index.rst +++ b/docs/changes/index.rst @@ -3,6 +3,7 @@ Changelogs .. toctree:: Unreleased + 0.48.0 <0.48.0> 0.47.0 <0.47.0> 0.46.0 <0.46.0> 0.45.0 <0.45.0> diff --git a/docs/changes/newsfragments/6394.improved b/docs/changes/newsfragments/6394.improved deleted file mode 100644 index 26fc52b34b4..00000000000 --- a/docs/changes/newsfragments/6394.improved +++ /dev/null @@ -1 +0,0 @@ -Improve handling of corner cases where `Instrument.remove_parameter` could raise an exception. diff --git a/docs/changes/newsfragments/6422.improved b/docs/changes/newsfragments/6422.improved deleted file mode 100644 index dbff954f311..00000000000 --- a/docs/changes/newsfragments/6422.improved +++ /dev/null @@ -1,3 +0,0 @@ -`dond` now takes an optional `squeeze` flag as input. Inspired by Matplotlib's `plt.subplots` argument -of the same name, this allows the user to always get the same type returned from the function if set to False. -This makes it easier to write type checked code that uses `dond` as a function.