From b446efce7650bca7579b84b22a87701c6f31cedf Mon Sep 17 00:00:00 2001 From: tangkong Date: Thu, 14 Sep 2023 11:46:25 -0700 Subject: [PATCH] DOC: add release notes for v1.1.0 --- docs/source/releases.rst | 29 +++++++++++++++++++ .../184-enh_dyn_val.rst | 25 ---------------- .../193-enh_plan_step.rst | 24 --------------- .../198-enh_fill_template.rst | 24 --------------- 4 files changed, 29 insertions(+), 73 deletions(-) delete mode 100644 docs/source/upcoming_release_notes/184-enh_dyn_val.rst delete mode 100644 docs/source/upcoming_release_notes/193-enh_plan_step.rst delete mode 100644 docs/source/upcoming_release_notes/198-enh_fill_template.rst diff --git a/docs/source/releases.rst b/docs/source/releases.rst index 900f2688..be3eed55 100644 --- a/docs/source/releases.rst +++ b/docs/source/releases.rst @@ -2,6 +2,35 @@ Release History ############### +v1.1.0 (2023-09-14) +=================== + +Features +-------- +- Adds find-replace functionality and helpers. These procedures walk through the dataclass, rather than blindly modifying serialized json. +- Adds a simple find-replace widget and more fully-featured fill-template page. +- Adds backend dataclasses for running Bluesky plans in active checkouts. +- Prototypes auto-generated plan argument entry widgets. +- Annotates built-in Bluesky plans with bluesky-queueserver compatible type hints. +- Adds :class:`~atef.check.DynamicValue` (and subclasses :class:`~atef.check.HappiValue`, :class:`~atef.check.EpicsValue`) for comparing to dynamically changing data sources. +- Adds :class:`~atef.widgets.config.MultiModeValueEdit` widget for modifying values give a specified type, including dynamic values. + +Bugfixes +-------- +- Ensure filenames get cast as strings properly. +- Allow cast_dataclass to transfer objects from old to new dataclass, previously nested dataclasses would be converted to dicts. + +Maintenance +----------- +- Adds bluesky-queueserver dependency and pins databroker. +- Add sphinx templates for autogenerated documentation. +- Reduce randomness in test suite, try all combo box options when available. + +Contributors +------------ +- tangkong + + v1.0.0 (2023-06-22) ======================== Many changes have taken place since the last tag (08/2022). Checkouts can now diff --git a/docs/source/upcoming_release_notes/184-enh_dyn_val.rst b/docs/source/upcoming_release_notes/184-enh_dyn_val.rst deleted file mode 100644 index ea046b1f..00000000 --- a/docs/source/upcoming_release_notes/184-enh_dyn_val.rst +++ /dev/null @@ -1,25 +0,0 @@ -184 enh_dyn_val -############### - -API Changes ------------ -- N/A - -Features --------- -- adds DynamicValue (and subclasses HappiValue, EpicsValue) for comparing to dynamically changing datasources -- adds MultiModeValueEdit widget for modifying values give a specified type, including dynamic value - -Bugfixes --------- -- ensure filenames get cast as strings properly -- allow cast_dataclass to transfer objects from old to new dataclass, previously nested dataclasses would be converted to dicts - -Maintenance ------------ -- add sphinx templates for autogenerated documentation -- reduce randomness in test suite, try all combo box options when available - -Contributors ------------- -- tangkong diff --git a/docs/source/upcoming_release_notes/193-enh_plan_step.rst b/docs/source/upcoming_release_notes/193-enh_plan_step.rst deleted file mode 100644 index a0d96fd5..00000000 --- a/docs/source/upcoming_release_notes/193-enh_plan_step.rst +++ /dev/null @@ -1,24 +0,0 @@ -193 enh_plan_step -################# - -API Changes ------------ -- N/A - -Features --------- -- Adds backend for running Bluesky plans in active checkouts -- Prototypes auto-generated plan argument entry widgets -- Annotates built-in Bluesky plans with bluesky-queueserver compatible type hints - -Bugfixes --------- -- N/A - -Maintenance ------------ -- adds bluesky-queueserver dependency and pins databroker - -Contributors ------------- -- tangkong diff --git a/docs/source/upcoming_release_notes/198-enh_fill_template.rst b/docs/source/upcoming_release_notes/198-enh_fill_template.rst deleted file mode 100644 index fb68a486..00000000 --- a/docs/source/upcoming_release_notes/198-enh_fill_template.rst +++ /dev/null @@ -1,24 +0,0 @@ -198 enh_fill_template -##################### - -API Changes ------------ -- N/A - -Features --------- -- Adds find-replace functionality and helpers. These procedures walk - through the dataclass, rather than blindly modifying serialized json. -- Adds a simple find-replace widget and more fully-featured fill-template page - -Bugfixes --------- -- N/A - -Maintenance ------------ -- N/A - -Contributors ------------- -- tangkong