From 11dbc3403cfd8b7ac44c213c3678d2ab8b6afe82 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 18 Jun 2024 14:49:18 +0000 Subject: [PATCH 1/3] Prepare release 1.4.0 Workflow: Release stage 1 - create release PR, run: 39 --- CHANGES.md | 2 +- cylc/rose/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index d6777d38..27490f7c 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -6,7 +6,7 @@ creating a new release entry be sure to copy & paste the span tag with the updated. Only the first match gets replaced, so it's fine to leave the old ones in. --> -## __cylc-rose-1.4.0 (Upcoming)__ +## __cylc-rose-1.4.0 (Released 2024-06-18)__ ### Features diff --git a/cylc/rose/__init__.py b/cylc/rose/__init__.py index b0e203b6..b1cf6181 100644 --- a/cylc/rose/__init__.py +++ b/cylc/rose/__init__.py @@ -232,4 +232,4 @@ """ -__version__ = '1.4.0.dev' +__version__ = '1.4.0' From 44da02adc442529ec1945679caab4b9003628825 Mon Sep 17 00:00:00 2001 From: Tim Pillinger <26465611+wxtim@users.noreply.github.com> Date: Tue, 18 Jun 2024 16:07:35 +0100 Subject: [PATCH 2/3] missing log entry --- CHANGES.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGES.md b/CHANGES.md index 27490f7c..3d4b4c13 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -13,6 +13,11 @@ ones in. --> [#269](https://github.com/cylc/cylc-rose/pull/269) - Allow environment variables set in ``rose-suite.conf`` to be used when parsing ``global.cylc``. +### Fixes + +[#319](https://github.com/cylc/cylc-rose/pull/319) - Prevent Cylc Rose +from modifying Cylc's compatibility mode. + ## __cylc-rose-1.3.4 (Released 2024-05-02)__ From c2a2c0c3139c10e5396ae138f7dee59fa69280aa Mon Sep 17 00:00:00 2001 From: Tim Pillinger <26465611+wxtim@users.noreply.github.com> Date: Tue, 18 Jun 2024 17:13:29 +0100 Subject: [PATCH 3/3] fix test broken by change in rose error message --- tests/functional/test_rose_fileinstall.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/functional/test_rose_fileinstall.py b/tests/functional/test_rose_fileinstall.py index d22e124c..22e964f2 100644 --- a/tests/functional/test_rose_fileinstall.py +++ b/tests/functional/test_rose_fileinstall.py @@ -89,6 +89,6 @@ async def test_rose_fileinstall_error(tmp_path, cylc_install_cli): ''')) with pytest.raises( PluginError, - match='file:bad=source=no-such-file: bad or missing value', + match='path does not exist or not accessible: no-such-file', ): await cylc_install_cli(tmp_path)