diff --git a/CHANGELOG.rst b/CHANGELOG.rst index f055065d6ea51f1b9158bf818d2cc76bdc812376..63d17059ddb8552813c9a62504aa555b385a692b 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -17,7 +17,13 @@ Added Changed ^^^^^^^ - +* The default behaviour of the :func:`fsl.utils.run.run` function (and hence + that of all :mod:`fsl.wrappers` functions) has been changed so that the + standard output and error of the called command is now forwarded to the + calling Python process, in addition to being returned from ``run`` as + strings. In other words, the default behaviour of ``run('cmd')``, is now + equivalent to ``run('cmd', log={"tee":True})``. The previous default + behaviour can be achieved with ``run('cmd', log={"tee":False})``. * The :func:`fsl.utils.run.run` and :func:`fsl.utils.run.runfsl` functions (and hence all :mod:`fsl.wrappers` functions) have been modified to use ``fsl.wrappers.fsl_sub`` instead of ``fsl.utils.fslsub.submit``. This is an @@ -32,6 +38,9 @@ Deprecated * :class:`fsl.utils.fslsub.SubmitParams` and :func:`fsl.utils.fslsub.submit` have been deprecated in favour of using the ``fsl.wrappers.fsl_sub`` wrapper function. +* The :func:`fsl.utils.fslsub.info` function has been deprecated in favour of + using the ``fsl_sub.report`` function, from the separate `fsl_sub + <https://git.fmrib.ox.ac.uk/fsl/fsl_sub>`_ Python library. 3.6.4 (Tuesday 3rd August 2021)