From 575681773b30e066beb0eec337ccd94bc006d6c4 Mon Sep 17 00:00:00 2001 From: Zachary Lentz Date: Tue, 4 Apr 2023 12:09:26 -0700 Subject: [PATCH] DOC: run release notes script for v1.18.1 --- docs/source/releases.rst | 32 +++++++++++++++++ .../356-ensure_endstation_devices.rst | 23 ------------ .../358-migrate-to-gha.rst | 35 ------------------- 3 files changed, 32 insertions(+), 58 deletions(-) delete mode 100644 docs/source/upcoming_release_notes/356-ensure_endstation_devices.rst delete mode 100644 docs/source/upcoming_release_notes/358-migrate-to-gha.rst diff --git a/docs/source/releases.rst b/docs/source/releases.rst index b35b31ae..084c4d18 100644 --- a/docs/source/releases.rst +++ b/docs/source/releases.rst @@ -2,6 +2,38 @@ Release History ############### +v1.18.1 (2023-04-04) +==================== + +Bugfixes +-------- +- Fix an edge case where all hutch devices may be skipped in the load + if all of them are missing from lightpath. + +Maintenance +----------- +- hutch-python no longer uses Travis CI and has migrated to GitHub Actions for + continuous integration, testing, and documentation deployment. +- hutch-python has been migrated to use setuptools-scm, replacing versioneer, as its + version-string management tool of choice. +- hutch-python has been migrated to use the modern ``pyproject.toml``, replacing + ``setup.py`` and related files. +- Older language features and syntax found in the repository have been updated + to Python 3.9+ standards by way of ``pyupgrade``. +- Sphinx 6.0 is now supported for documentation building. + ``docs-versions-menu`` replaces ``doctr-versions-menu`` and ``doctr`` usage + for documentation deployment on GitHub Actions. The deployment key is now no + longer required. +- pyupgrade was used to update annotations, and pycln was used to clean up + imports. + +Contributors +------------ +- klauer +- zllentz + + + v1.18.0 (2022-10-25) ==================== diff --git a/docs/source/upcoming_release_notes/356-ensure_endstation_devices.rst b/docs/source/upcoming_release_notes/356-ensure_endstation_devices.rst deleted file mode 100644 index bcd2e32d..00000000 --- a/docs/source/upcoming_release_notes/356-ensure_endstation_devices.rst +++ /dev/null @@ -1,23 +0,0 @@ -356 ensure_endstation_devices -############################# - -API Changes ------------ -- N/A - -Features --------- -- N/A - -Bugfixes --------- -- Fix an edge case where all hutch devices may be skipped in the load - if all of them are missing from lightpath. - -Maintenance ------------ -- N/A - -Contributors ------------- -- zllentz diff --git a/docs/source/upcoming_release_notes/358-migrate-to-gha.rst b/docs/source/upcoming_release_notes/358-migrate-to-gha.rst deleted file mode 100644 index 06950c45..00000000 --- a/docs/source/upcoming_release_notes/358-migrate-to-gha.rst +++ /dev/null @@ -1,35 +0,0 @@ -358 Migrate to GHA -################## - -API Changes ------------ -- N/A - -Features --------- -- N/A - -Bugfixes --------- -- N/A - -Maintenance ------------ -- hutch-python no longer uses Travis CI and has migrated to GitHub Actions for - continuous integration, testing, and documentation deployment. -- hutch-python has been migrated to use setuptools-scm, replacing versioneer, as its - version-string management tool of choice. -- hutch-python has been migrated to use the modern ``pyproject.toml``, replacing - ``setup.py`` and related files. -- Older language features and syntax found in the repository have been updated - to Python 3.9+ standards by way of ``pyupgrade``. -- Sphinx 6.0 is now supported for documentation building. - ``docs-versions-menu`` replaces ``doctr-versions-menu`` and ``doctr`` usage - for documentation deployment on GitHub Actions. The deployment key is now no - longer required. -- pyupgrade was used to update annotations, and pycln was used to clean up - imports. - -Contributors ------------- -- klauer