Skip to content

Commit

Permalink
update version numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
agramfort committed May 1, 2018
1 parent 4cf712a commit ff5dd47
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
fi;
if [ "$CIRCLE_BRANCH" == "master" ] || [[ $(cat gitlog.txt) == *"[circle full]"* ]]; then
echo html_dev > build.txt;
elif [ "$CIRCLE_BRANCH" == "maint/0.15" ]; then
elif [ "$CIRCLE_BRANCH" == "maint/0.16" ]; 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 @@ -195,7 +195,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.15" ]; then
elif [ "${CIRCLE_BRANCH}" == "maint/0.16" ]; then
echo "Deploying stable docs.";
git config --global user.email "circle@mne.com";
git config --global user.name "Circle Ci";
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.16.dev0'
__version__ = '0.16.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 ff5dd47

Please sign in to comment.