From 49472e0c72e6fee00e511a97a678066e479a81a1 Mon Sep 17 00:00:00 2001 From: Robert Luke <748691+rob-luke@users.noreply.github.com> Date: Sat, 11 Sep 2021 11:22:52 +1000 Subject: [PATCH] Prepare for v0.1.1 release (#373) --- doc/changelog.rst | 4 ++-- doc/conf.py | 3 ++- doc/release.md | 3 ++- mne_nirs/_version.py | 2 +- 4 files changed, 7 insertions(+), 5 deletions(-) diff --git a/doc/changelog.rst b/doc/changelog.rst index 4fa8df6ae..ad08de258 100644 --- a/doc/changelog.rst +++ b/doc/changelog.rst @@ -14,8 +14,8 @@ 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.1 - dev ------------- +v0.1.1 +------ API changes diff --git a/doc/conf.py b/doc/conf.py index f87c96cf8..8eba12c8c 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -142,7 +142,8 @@ html_context = { 'build_dev_html': bool(int(os.environ.get('BUILD_DEV_HTML', False))), 'versions_dropdown': { - 'v0.1.0': 'v0.1.0 (stable)', + 'v0.1.1': 'v0.1.1 (stable)', + 'v0.1.0': 'v0.1.0', 'v0.0.6': 'v0.0.6', 'v0.0.5': 'v0.0.5', 'v0.0.4': 'v0.0.4', diff --git a/doc/release.md b/doc/release.md index 5f9db21bb..1a4fa4aef 100644 --- a/doc/release.md +++ b/doc/release.md @@ -2,8 +2,9 @@ 1. Change version number and doc dropdown options. E.g. [46104c8](https://github.com/mne-tools/mne-nirs/pull/295/commits/46104c8cc5f971b1cce772626869dd96993b2bb7) 1. Change the version number from `0.0.X dev` to `0.0.X` in [mne-nirs/mne_nirs/_version.py](https://github.com/mne-tools/mne-nirs/blob/master/mne_nirs/_version.py#L1) - 1. Add new version to [mne-nirs/doc/conf.py](https://github.com/mne-tools/mne-nirs/blob/714dc6f75ebc561e7974ba7d3256fe0ae8d35174/doc/conf.py#L131) by changing `html_context, versions_dropdown`. + 2. Add new version to [mne-nirs/doc/conf.py](https://github.com/mne-tools/mne-nirs/blob/714dc6f75ebc561e7974ba7d3256fe0ae8d35174/doc/conf.py#L131) by changing `html_context, versions_dropdown`. Remove the stable tag from previous version and add this version as `'v0.0.X': 'v0.0.X (stable)',` + 3. Modify the changelog.md and rename the `-dev` from most recent changes 1. Push change and wait for PR checks to go green. 1. Merge PR and wait for checks to go green. 1. Clone main branch locally. `git clone git@github.com:mne-tools/mne-nirs.git` diff --git a/mne_nirs/_version.py b/mne_nirs/_version.py index a09f1a9e3..485f44ac2 100644 --- a/mne_nirs/_version.py +++ b/mne_nirs/_version.py @@ -1 +1 @@ -__version__ = "0.1.1 dev" +__version__ = "0.1.1"