diff --git a/CHANGES.md b/CHANGES.md index 6ea79cf6231..36280bda750 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -11,6 +11,14 @@ $ towncrier create ..md --content "Short description" +## __cylc-8.2.7 (Released 2024-05-15)__ + +### 🔧 Fixes + +[#6096](https://github.com/cylc/cylc-flow/pull/6096) - Fixed bug that caused graph arrows to go missing in the GUI when suicide triggers are present. + +[#6102](https://github.com/cylc/cylc-flow/pull/6102) - Fixed bug introduced in 8.2.6 in `cylc vip` & `cylc vr` when using cylc-rose options (`-S`, `-D`, `-O`). + ## __cylc-8.2.6 (Released 2024-05-02)__ ### ⚠ Breaking Changes diff --git a/changes.d/6096.fix.md b/changes.d/6096.fix.md deleted file mode 100644 index d70face335f..00000000000 --- a/changes.d/6096.fix.md +++ /dev/null @@ -1 +0,0 @@ -Fixed bug that caused graph arrows to go missing in the GUI when suicide triggers are present. \ No newline at end of file diff --git a/changes.d/6102.fix.md b/changes.d/6102.fix.md deleted file mode 100644 index cbc8ecc2bd8..00000000000 --- a/changes.d/6102.fix.md +++ /dev/null @@ -1 +0,0 @@ -Fixed bug introduced in 8.2.6 in `cylc vip` & `cylc vr` when using cylc-rose options (`-S`, `-D`, `-O`). diff --git a/cylc/flow/__init__.py b/cylc/flow/__init__.py index 22e6e49ab3f..d6b4fc5237e 100644 --- a/cylc/flow/__init__.py +++ b/cylc/flow/__init__.py @@ -53,7 +53,7 @@ def environ_init(): environ_init() -__version__ = '8.2.7.dev' +__version__ = '8.2.7' def iter_entry_points(entry_point_name):