diff --git a/doc/changelog.rst b/doc/changelog.rst index 57af62aca..318a9452d 100644 --- a/doc/changelog.rst +++ b/doc/changelog.rst @@ -15,12 +15,12 @@ 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.3 development ------------------- +v0.2.0 +------ General -* MNE-NIRS now requires the latest MNE-Python development version (main branch). +* MNE-NIRS now requires the latest MNE-Python 1.0 or later. Enhancements diff --git a/doc/conf.py b/doc/conf.py index e5c60ecd4..d8544a967 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -82,7 +82,7 @@ # General information about the project. project = u'MNE-NIRS' -copyright = u'2020, Robert Luke' +copyright = u'2022, MNE-NIRS Developers' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the @@ -144,7 +144,8 @@ html_context = { 'build_dev_html': bool(int(os.environ.get('BUILD_DEV_HTML', False))), 'versions_dropdown': { - 'v0.1.2': 'v0.1.2 (stable)', + 'v0.2.0': 'v0.2.0 (stable)', + 'v0.1.2': 'v0.1.2', 'v0.1.1': 'v0.1.1', 'v0.1.0': 'v0.1.0', 'v0.0.6': 'v0.0.6', diff --git a/mne_nirs/_version.py b/mne_nirs/_version.py index 32513bdb3..d3ec452c3 100644 --- a/mne_nirs/_version.py +++ b/mne_nirs/_version.py @@ -1 +1 @@ -__version__ = "0.1.3 dev" +__version__ = "0.2.0"