diff --git a/CHANGES.md b/CHANGES.md index b4962abe..ec0203a4 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -12,6 +12,16 @@ $ towncrier create ..md --content "Short description" +## cylc-uiserver-1.4.4 (Released 2024-04-05) + +[Updated cylc-ui to 2.4.0](https://github.com/cylc/cylc-ui/blob/master/CHANGES.md) + +### 🔧 Fixes + +[#558](https://github.com/cylc/cylc-uiserver/pull/558) - Permit Jupyter Lab to be run in the same Jupyter Server instance as the Cylc UI Server in standalone mode (i.e. via `cylc gui`), note it was already possible to do this in multi-user mode (i.e. via `cylc hub`). + +[#570](https://github.com/cylc/cylc-uiserver/pull/570) - Fix an issue that could impose a low limit on the number of active workflows the server is able to track. + ## cylc-uiserver-1.4.3 (Released 2023-12-05) ### 🔧 Fixes diff --git a/changes.d/+4e284398.ui-version.md b/changes.d/+4e284398.ui-version.md deleted file mode 100644 index 2f1b685e..00000000 --- a/changes.d/+4e284398.ui-version.md +++ /dev/null @@ -1 +0,0 @@ -Updated cylc-ui to 2.4.0 \ No newline at end of file diff --git a/changes.d/558.fix.md b/changes.d/558.fix.md deleted file mode 100644 index 699f1676..00000000 --- a/changes.d/558.fix.md +++ /dev/null @@ -1 +0,0 @@ -Permit Jupyter Lab to be run in the same Jupyter Server instance as the Cylc UI Server in standalone mode (i.e. via `cylc gui`), note it was already possible to do this in multi-user mode (i.e. via `cylc hub`). diff --git a/changes.d/570.fix.md b/changes.d/570.fix.md deleted file mode 100644 index ab57970a..00000000 --- a/changes.d/570.fix.md +++ /dev/null @@ -1 +0,0 @@ -Fix an issue that could impose a low limit on the number of active workflows the server is able to track. diff --git a/cylc/uiserver/__init__.py b/cylc/uiserver/__init__.py index e673287d..453bc9e7 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.4.4.dev" +__version__ = "1.4.4" import os from typing import Dict