Skip to content

Commit

Permalink
[RELEASE] bump 0.17.dev0 to 0.17 (#5723)
Browse files Browse the repository at this point in the history
- 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)
  • Loading branch information
massich committed Nov 19, 2018
1 parent 674e581 commit 5b1ac27
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ jobs:
touch pattern.txt;
if [ "$CIRCLE_BRANCH" == "master" ] || [[ $(cat gitlog.txt) == *"[circle full]"* ]]; then
echo html_dev > build.txt;
elif [ "$CIRCLE_BRANCH" == "maint/0.16" ]; then
elif [ "$CIRCLE_BRANCH" == "maint/0.17" ]; then
echo html_stable > build.txt;
else
FNAMES=$(git diff --name-only $CIRCLE_BRANCH $(git merge-base $CIRCLE_BRANCH upstream/master));
Expand Down Expand Up @@ -253,7 +253,7 @@ jobs:
pushd ~/mne-tools.github.io && git checkout master && git pull origin master && popd;
pushd doc/_build && rm -Rf ~/mne-tools.github.io/dev && cp -a html ~/mne-tools.github.io/dev && popd;
pushd ~/mne-tools.github.io && git add -A && git commit -m "CircleCI update of dev docs (${CIRCLE_BUILD_NUM})." && git push origin master && popd;
elif [ "${CIRCLE_BRANCH}" == "maint/0.16" ]; then
elif [ "${CIRCLE_BRANCH}" == "maint/0.17" ]; then
echo "Deploying stable docs.";
git config --global user.email "circle@mne.com";
git config --global user.name "Circle Ci";
Expand Down
3 changes: 2 additions & 1 deletion doc/_templates/navbar.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
</button>
<ul class="dropdown-menu" aria-labelledby="dropdownMenu1">
<li><a href="https://mne-tools.github.io/dev/index.html">Development</a></li>
<li><a href="https://mne-tools.github.io/stable/index.html">v0.16 (stable)</a></li>
<li><a href="https://mne-tools.github.io/stable/index.html">v0.17 (stable)</a></li>
<li><a href="https://mne-tools.github.io/0.16/index.html">v0.16</a></li>
<li><a href="https://mne-tools.github.io/0.15/index.html">v0.15</a></li>
<li><a href="https://mne-tools.github.io/0.14/index.html">v0.14</a></li>
<li><a href="https://mne-tools.github.io/0.13/index.html">v0.13</a></li>
Expand Down
2 changes: 1 addition & 1 deletion mne/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# Dev branch marker is: 'X.Y.devN' where N is an integer.
#

__version__ = '0.17.dev0'
__version__ = '0.17.0'

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

0 comments on commit 5b1ac27

Please sign in to comment.