Skip to content

Commit 5b1ac27

Browse files
authored
[RELEASE] bump 0.17.dev0 to 0.17 (#5723)
- Archive 0.16 and add 0.17 to navigation bar - update __init__ and circle.yml It requires to manually update mne-tools.github.io (see mne-tools/mne-tools.github.io#13)
1 parent 674e581 commit 5b1ac27

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.circleci/config.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787
touch pattern.txt;
8888
if [ "$CIRCLE_BRANCH" == "master" ] || [[ $(cat gitlog.txt) == *"[circle full]"* ]]; then
8989
echo html_dev > build.txt;
90-
elif [ "$CIRCLE_BRANCH" == "maint/0.16" ]; then
90+
elif [ "$CIRCLE_BRANCH" == "maint/0.17" ]; then
9191
echo html_stable > build.txt;
9292
else
9393
FNAMES=$(git diff --name-only $CIRCLE_BRANCH $(git merge-base $CIRCLE_BRANCH upstream/master));
@@ -253,7 +253,7 @@ jobs:
253253
pushd ~/mne-tools.github.io && git checkout master && git pull origin master && popd;
254254
pushd doc/_build && rm -Rf ~/mne-tools.github.io/dev && cp -a html ~/mne-tools.github.io/dev && popd;
255255
pushd ~/mne-tools.github.io && git add -A && git commit -m "CircleCI update of dev docs (${CIRCLE_BUILD_NUM})." && git push origin master && popd;
256-
elif [ "${CIRCLE_BRANCH}" == "maint/0.16" ]; then
256+
elif [ "${CIRCLE_BRANCH}" == "maint/0.17" ]; then
257257
echo "Deploying stable docs.";
258258
git config --global user.email "[email protected]";
259259
git config --global user.name "Circle Ci";

doc/_templates/navbar.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
</button>
99
<ul class="dropdown-menu" aria-labelledby="dropdownMenu1">
1010
<li><a href="https://mne-tools.github.io/dev/index.html">Development</a></li>
11-
<li><a href="https://mne-tools.github.io/stable/index.html">v0.16 (stable)</a></li>
11+
<li><a href="https://mne-tools.github.io/stable/index.html">v0.17 (stable)</a></li>
12+
<li><a href="https://mne-tools.github.io/0.16/index.html">v0.16</a></li>
1213
<li><a href="https://mne-tools.github.io/0.15/index.html">v0.15</a></li>
1314
<li><a href="https://mne-tools.github.io/0.14/index.html">v0.14</a></li>
1415
<li><a href="https://mne-tools.github.io/0.13/index.html">v0.13</a></li>

mne/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# Dev branch marker is: 'X.Y.devN' where N is an integer.
1717
#
1818

19-
__version__ = '0.17.dev0'
19+
__version__ = '0.17.0'
2020

2121
# have to import verbose first since it's needed by many things
2222
from .utils import (set_log_level, set_log_file, verbose, set_config,

0 commit comments

Comments
 (0)