Skip to content

Commit

Permalink
Prepare for v0.1.1 release (#373)
Browse files Browse the repository at this point in the history
  • Loading branch information
rob-luke committed Sep 11, 2021
1 parent 453b6b9 commit 49472e0
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
4 changes: 2 additions & 2 deletions doc/changelog.rst
Expand Up @@ -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

Expand Down
3 changes: 2 additions & 1 deletion doc/conf.py
Expand Up @@ -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',
Expand Down
3 changes: 2 additions & 1 deletion doc/release.md
Expand Up @@ -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`
Expand Down
2 changes: 1 addition & 1 deletion mne_nirs/_version.py
@@ -1 +1 @@
__version__ = "0.1.1 dev"
__version__ = "0.1.1"

0 comments on commit 49472e0

Please sign in to comment.