diff --git a/CHANGES.md b/CHANGES.md index 6ac7e4d345c..c78331d96eb 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -11,6 +11,16 @@ $ towncrier create ..md --content "Short description" +## __cylc-8.2.5 (Released 2024-04-02)__ + +### 🔧 Fixes + +[#5933](https://github.com/cylc/cylc-flow/pull/5933) - Fixed bug in `cylc broadcast` (and the GUI Edit Runtime command) where everything after a `#` character in a setting would be stripped out. + +[#5959](https://github.com/cylc/cylc-flow/pull/5959) - Fix an issue where workflow "timeout" events were not fired in all situations when they should have been. + +[#6011](https://github.com/cylc/cylc-flow/pull/6011) - Fixed a `cylc vip` bug causing remote re-invocation to fail if using `--workflow-name` option. + ## __cylc-8.2.4 (Released 2024-01-11)__ ### 🚀 Enhancements diff --git a/changes.d/5933.fix.md b/changes.d/5933.fix.md deleted file mode 100644 index 8ba0546c760..00000000000 --- a/changes.d/5933.fix.md +++ /dev/null @@ -1 +0,0 @@ -Fixed bug in `cylc broadcast` (and the GUI Edit Runtime command) where everything after a `#` character in a setting would be stripped out. diff --git a/changes.d/5959.fix.md b/changes.d/5959.fix.md deleted file mode 100644 index f68c9bc4112..00000000000 --- a/changes.d/5959.fix.md +++ /dev/null @@ -1 +0,0 @@ -Fix an issue where workflow "timeout" events were not fired in all situations when they should have been. diff --git a/changes.d/6011.fix.md b/changes.d/6011.fix.md deleted file mode 100644 index 89260fdb392..00000000000 --- a/changes.d/6011.fix.md +++ /dev/null @@ -1 +0,0 @@ -Fixed a `cylc vip` bug causing remote re-invocation to fail if using `--workflow-name` option. \ No newline at end of file diff --git a/cylc/flow/__init__.py b/cylc/flow/__init__.py index 6ff3aa1fac5..746833e96ae 100644 --- a/cylc/flow/__init__.py +++ b/cylc/flow/__init__.py @@ -53,7 +53,7 @@ def environ_init(): environ_init() -__version__ = '8.2.5.dev' +__version__ = '8.2.5' def iter_entry_points(entry_point_name):