From 40828fb84949145299a522cfef44028a8637579c Mon Sep 17 00:00:00 2001 From: Robert Luke <748691+rob-luke@users.noreply.github.com> Date: Sat, 6 Nov 2021 10:52:24 +1100 Subject: [PATCH] Pre release tasks (#409) --- doc/changelog.rst | 10 ++++++++-- doc/conf.py | 3 ++- mne_nirs/_version.py | 2 +- 3 files changed, 11 insertions(+), 4 deletions(-) diff --git a/doc/changelog.rst b/doc/changelog.rst index f5ba8ffac..47033a6e8 100644 --- a/doc/changelog.rst +++ b/doc/changelog.rst @@ -15,8 +15,13 @@ Patch version changes indicate backward compatible bug fixes. To install a specific version of the library you would run ``pip install mne-nirs==0.0.6``, where ``0.0.6`` is the version you wish to install. -v0.1.2-development ------------------- +v0.1.2 +------ + +General + +* MNE-NIRS now uses the MNE-Python stable version v0.24 and no longer requires the development version. + Enhancements @@ -29,6 +34,7 @@ Enhancements * Add :meth:`mne_nirs.preprocessing.quantify_mayer_fooof`. By `Robert Luke`_. * Add :func:`mne_nirs.io.fold_landmark_specificity`. By `Robert Luke`_. * Add :func:`mne_nirs.io.fold_channel_specificity`. By `Robert Luke`_. +* Added fetchers for two more publicly available datasets. By `Robert Luke`_. v0.1.1 diff --git a/doc/conf.py b/doc/conf.py index 2b380d047..ea7ef8f85 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -144,7 +144,8 @@ html_context = { 'build_dev_html': bool(int(os.environ.get('BUILD_DEV_HTML', False))), 'versions_dropdown': { - 'v0.1.1': 'v0.1.1 (stable)', + 'v0.1.2': 'v0.1.2 (stable)', + 'v0.1.1': 'v0.1.1', 'v0.1.0': 'v0.1.0', 'v0.0.6': 'v0.0.6', 'v0.0.5': 'v0.0.5', diff --git a/mne_nirs/_version.py b/mne_nirs/_version.py index b4451425b..b3f475621 100644 --- a/mne_nirs/_version.py +++ b/mne_nirs/_version.py @@ -1 +1 @@ -__version__ = "0.1.2-dev" +__version__ = "0.1.2"