diff --git a/CHANGES.md b/CHANGES.md index b18c85d3b04..67fab457844 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -11,10 +11,13 @@ updated. Only the first match gets replaced, so it's fine to leave the old ones in. --> ------------------------------------------------------------------------------- -## __cylc-8.1.2 (Upcoming)__ +## __cylc-8.1.2 (Coming Soon)__ ### Fixes +[#5367](https://github.com/cylc/cylc-flow/pull/5367) - Enable using +Rose options (`-O`, `-S` & `-D`) with `cylc view`. + [#5363](https://github.com/cylc/cylc-flow/pull/5363) Improvements and bugfixes for `cylc lint`. diff --git a/cylc/flow/scripts/view.py b/cylc/flow/scripts/view.py index 6c6cf905016..423480cc20f 100644 --- a/cylc/flow/scripts/view.py +++ b/cylc/flow/scripts/view.py @@ -98,6 +98,8 @@ def get_option_parser(): parser.add_option( *AGAINST_SOURCE_OPTION.args, **AGAINST_SOURCE_OPTION.kwargs) + parser.add_cylc_rose_options() + return parser