diff --git a/docs/changes/0.39.0.rst b/docs/changes/0.39.0.rst new file mode 100644 index 00000000000..e1a9333c327 --- /dev/null +++ b/docs/changes/0.39.0.rst @@ -0,0 +1,23 @@ +QCoDeS 0.39.0 (2023-06-20) +========================== + +Note that this will be the last version to support Python 3.8. Please upgrade to at least +python 3.9. + +Improved: +--------- + +- The in memory cache of a dataset can now be configured both from the `qcodesrc.json` config file and when using `dond` to perform measurements. + The Exception raised when a `dond`, `do1d` etc. measurement is interrupted (`BreakConditionInterrupt`) has been made public as part of the + `qcodes.dataset` module so it can be intercepted and handled by the user. (:pr:`5200`) +- When writing a `DataSetInMem` back to a database the exp_id, counter and run_id are correctly updated + to reflect the sate of the new database. `write_metadata_to_db` has also been fixed to use + the database passed to init of the `DataSetInMem` class if no path is provided. (:pr:`5209`) + + +Improved Drivers: +----------------- + +- Fix Keithley 3706A driver to use the updated interlock status strings + (following up on :pr:`5007`) (:pr:`5147`) +- Increase default timeout on R&S ZNB and allow the instrument to overwrite default timeout (:pr:`5201`) diff --git a/docs/changes/index.rst b/docs/changes/index.rst index 749461e2fad..80a24643fb6 100644 --- a/docs/changes/index.rst +++ b/docs/changes/index.rst @@ -3,6 +3,7 @@ Changelogs .. toctree:: Unreleased + 0.39.0 <0.39.0> 0.38.1 <0.38.1> 0.38.0 <0.38.0> 0.37.0 <0.37.0> diff --git a/docs/changes/newsfragments/5147.improved_driver b/docs/changes/newsfragments/5147.improved_driver deleted file mode 100644 index 4308a6cea0e..00000000000 --- a/docs/changes/newsfragments/5147.improved_driver +++ /dev/null @@ -1,2 +0,0 @@ -Fix Keithley 3706A driver to use the updated interlock status strings -(following up on :pr:`5007`) diff --git a/docs/changes/newsfragments/5200.improved b/docs/changes/newsfragments/5200.improved deleted file mode 100644 index a4f3196a293..00000000000 --- a/docs/changes/newsfragments/5200.improved +++ /dev/null @@ -1,3 +0,0 @@ -The in memory cache of a dataset can now be configured both from the `qcodesrc.json` config file and when using `dond` to perform measurements. -The Exception raised when a `dond`, `do1d` etc. measurement is interrupted (`BreakConditionInterrupt`) has been made public as part of the -`qcodes.dataset` module so it can be intercepted and handled by the user. diff --git a/docs/changes/newsfragments/5201.improved_driver b/docs/changes/newsfragments/5201.improved_driver deleted file mode 100644 index d242bd19570..00000000000 --- a/docs/changes/newsfragments/5201.improved_driver +++ /dev/null @@ -1 +0,0 @@ -Increase default timeout on R&S ZNB and allow the instrument to overwrite default timeout diff --git a/docs/changes/newsfragments/5209.improved b/docs/changes/newsfragments/5209.improved deleted file mode 100644 index 6ecc49d26e3..00000000000 --- a/docs/changes/newsfragments/5209.improved +++ /dev/null @@ -1,3 +0,0 @@ -When writing a `DataSetInMem` back to a database the exp_id, counter and run_id are correctly updated -to reflect the sate of the new database. `write_metadata_to_db` has also been fixed to use -the database passed to init of the `DataSetInMem` class if no path is provided.