From 37e0ec23343ae6963f1cc1b9a00e781b4087c9c8 Mon Sep 17 00:00:00 2001 From: Zachary Lentz Date: Tue, 4 Apr 2023 12:14:39 -0700 Subject: [PATCH 1/2] DOC: run release notes script --- docs/source/releases.rst | 21 ++++++++++++++++++ .../170-maint_auto_fix_precommit.rst | 22 ------------------- .../173-bld_rm_pcdsdev_dep.rst | 22 ------------------- .../176-mnt_split_xpp.rst | 22 ------------------- 4 files changed, 21 insertions(+), 66 deletions(-) delete mode 100644 docs/source/upcoming_release_notes/170-maint_auto_fix_precommit.rst delete mode 100644 docs/source/upcoming_release_notes/173-bld_rm_pcdsdev_dep.rst delete mode 100644 docs/source/upcoming_release_notes/176-mnt_split_xpp.rst diff --git a/docs/source/releases.rst b/docs/source/releases.rst index a57fca28..50f21936 100644 --- a/docs/source/releases.rst +++ b/docs/source/releases.rst @@ -1,6 +1,27 @@ Release History ############### + +v1.0.2 (2023-04-04) +=================== + +Bugfixes +-------- +- Prevents cli entrypoint from returning the LightApp instance. +- filters the visible LightRow widgets after a path change. This fixes a bug where changing paths would show all devices on a path, ignoring the state of show-removed or device filter checkboxes. + +Maintenance +----------- +- Removes pcdsdevices dependency by vendoring AggregateSignal. +- Copies test requirements into the conda recipe +- Fix a pre-commit issue where we point to a defunct mirror of flake8 + +Contributors +------------ +- tangkong +- zllentz + + v1.0.1 (2022-10-25) =================== diff --git a/docs/source/upcoming_release_notes/170-maint_auto_fix_precommit.rst b/docs/source/upcoming_release_notes/170-maint_auto_fix_precommit.rst deleted file mode 100644 index 79058e27..00000000 --- a/docs/source/upcoming_release_notes/170-maint_auto_fix_precommit.rst +++ /dev/null @@ -1,22 +0,0 @@ -170 maint_auto_fix_precommit -############################ - -API Changes ------------ -- N/A - -Features --------- -- N/A - -Bugfixes --------- -- N/A - -Maintenance ------------ -- Fix a pre-commit issue where we point to a defunct mirror of flake8 - -Contributors ------------- -- zllentz diff --git a/docs/source/upcoming_release_notes/173-bld_rm_pcdsdev_dep.rst b/docs/source/upcoming_release_notes/173-bld_rm_pcdsdev_dep.rst deleted file mode 100644 index 40f34ad0..00000000 --- a/docs/source/upcoming_release_notes/173-bld_rm_pcdsdev_dep.rst +++ /dev/null @@ -1,22 +0,0 @@ -173 bld_rm_pcdsdev_dep -###################### - -API Changes ------------ -- N/A - -Features --------- -- N/A - -Bugfixes --------- -- Prevents cli entrypoint from returning the LightApp instance. - -Maintenance ------------ -- Removes pcdsdevices dependency by vendoring AggregateSignal. - -Contributors ------------- -- tangkong diff --git a/docs/source/upcoming_release_notes/176-mnt_split_xpp.rst b/docs/source/upcoming_release_notes/176-mnt_split_xpp.rst deleted file mode 100644 index 6d2ca041..00000000 --- a/docs/source/upcoming_release_notes/176-mnt_split_xpp.rst +++ /dev/null @@ -1,22 +0,0 @@ -176 mnt_split_xpp -################# - -API Changes ------------ -- N/A - -Features --------- -- N/A - -Bugfixes --------- -- filters the visible LightRow widgets after a path change. This fixes a bug where changing paths would show all devices on a path, ignoring the state of show-removed or device filter checkboxes. - -Maintenance ------------ -- Copies test requirements into the conda recipe - -Contributors ------------- -- tangkong From 1b63fb7ce76c6223458a60e3acbbe5c355b33ead Mon Sep 17 00:00:00 2001 From: Zachary Lentz Date: Tue, 4 Apr 2023 12:15:40 -0700 Subject: [PATCH 2/2] DOC: update release notes for stylistic consistency --- docs/source/releases.rst | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/docs/source/releases.rst b/docs/source/releases.rst index 50f21936..5e231531 100644 --- a/docs/source/releases.rst +++ b/docs/source/releases.rst @@ -8,13 +8,15 @@ v1.0.2 (2023-04-04) Bugfixes -------- - Prevents cli entrypoint from returning the LightApp instance. -- filters the visible LightRow widgets after a path change. This fixes a bug where changing paths would show all devices on a path, ignoring the state of show-removed or device filter checkboxes. +- Filters the visible LightRow widgets after a path change. + This fixes a bug where changing paths would show all devices on a path, + ignoring the state of show-removed or device filter checkboxes. Maintenance ----------- - Removes pcdsdevices dependency by vendoring AggregateSignal. -- Copies test requirements into the conda recipe -- Fix a pre-commit issue where we point to a defunct mirror of flake8 +- Copies test requirements into the conda recipe. +- Fix a pre-commit issue where we point to a defunct mirror of flake8. Contributors ------------