diff --git a/CHANGES.md b/CHANGES.md index 3739b58d..3ebdd00d 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -12,6 +12,16 @@ $ towncrier create ..md --content "Short description" +## cylc-uiserver-1.5.1 (Released 2024-10-15) + +[Updated cylc-ui to 2.6.0](https://github.com/cylc/cylc-ui/blob/master/CHANGES.md) + +### 🔧 Fixes + +[#607](https://github.com/cylc/cylc-uiserver/pull/607) - Log any errors when trying to list the workflow/job log files in the UI. + +[#619](https://github.com/cylc/cylc-uiserver/pull/619) - Ensure that subprocesses created by Cylc UI Server are cleaned up correctly when the server shuts down. + ## cylc-uiserver-1.5.0 (Released 2024-06-18) [Updated cylc-ui to 2.5.0](https://github.com/cylc/cylc-ui/blob/master/CHANGES.md) diff --git a/changes.d/+dfccb67d.ui-version.md b/changes.d/+dfccb67d.ui-version.md deleted file mode 100644 index 1ff50218..00000000 --- a/changes.d/+dfccb67d.ui-version.md +++ /dev/null @@ -1 +0,0 @@ -Updated cylc-ui to 2.6.0 diff --git a/changes.d/607.fix.md b/changes.d/607.fix.md deleted file mode 100644 index ba5320f4..00000000 --- a/changes.d/607.fix.md +++ /dev/null @@ -1 +0,0 @@ -Log any errors when trying to list the workflow/job log files in the UI. diff --git a/changes.d/619.fix.md b/changes.d/619.fix.md deleted file mode 100644 index 4b67746c..00000000 --- a/changes.d/619.fix.md +++ /dev/null @@ -1 +0,0 @@ -Ensure that subprocesses created by Cylc UI Server are cleaned up correctly when the server shuts down. diff --git a/cylc/uiserver/__init__.py b/cylc/uiserver/__init__.py index d84ff5ee..b4552c60 100644 --- a/cylc/uiserver/__init__.py +++ b/cylc/uiserver/__init__.py @@ -13,7 +13,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -__version__ = "1.5.1.dev" +__version__ = "1.5.1" import os from typing import Dict