diff --git a/doc/changes/latest.rst b/doc/changes/0.9.2.rst similarity index 91% rename from doc/changes/latest.rst rename to doc/changes/0.9.2.rst index 00e5da07c0..9f2d0ee7de 100644 --- a/doc/changes/latest.rst +++ b/doc/changes/0.9.2.rst @@ -2,9 +2,19 @@ .. include:: names.rst -0.9.2.dev +0.9.2 ========= +**Released August 2022** + +HIGHLIGHTS +---------- + +- Updated docs with a new theme using `furo `_ (:gh:`3125` by `Alexis Thual`_). +- :func:`~mass_univariate.permuted_ols` and :func:`~glm.second_level.non_parametric_inference` now support :term:`TFCE` statistic (:gh:`3196` by `Taylor Salo`_). +- :func:`~mass_univariate.permuted_ols` and :func:`~glm.second_level.non_parametric_inference` now support cluster-level Family-wise error correction (:gh:`3181` by `Taylor Salo`_). +- :func:`~interfaces.bids.save_glm_to_bids` has been added, which writes model outputs to disk according to BIDS convention (:gh:`2715` by `Taylor Salo`_). + NEW --- diff --git a/doc/changes/whats_new.rst b/doc/changes/whats_new.rst index 6c376c6670..7d03555b3e 100644 --- a/doc/changes/whats_new.rst +++ b/doc/changes/whats_new.rst @@ -5,8 +5,8 @@ What's new ========== -.. _latest: -.. include:: latest.rst +.. _v0.9.2: +.. include:: 0.9.2.rst .. _v0.9.1: .. include:: 0.9.1.rst .. _v0.9.0: diff --git a/nilearn/version.py b/nilearn/version.py index 63ee598ced..7e037a2f99 100644 --- a/nilearn/version.py +++ b/nilearn/version.py @@ -21,10 +21,10 @@ # Dev branch marker is: 'X.Y.dev' or 'X.Y.devN' where N is an integer. # 'X.Y.dev0' is the canonical version of 'X.Y.dev' # -__version__ = '0.9.2.dev' +__version__ = '0.9.2' _NILEARN_INSTALL_MSG = 'See %s for installation information.' % ( - 'http://nilearn.github.io/introduction.html#installation') + 'https://nilearn.github.io/stable/introduction.html#installation') import operator