Skip to content

Commit ff5dd47

Browse files
committed
update version numbers
1 parent 4cf712a commit ff5dd47

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
fi;
6161
if [ "$CIRCLE_BRANCH" == "master" ] || [[ $(cat gitlog.txt) == *"[circle full]"* ]]; then
6262
echo html_dev > build.txt;
63-
elif [ "$CIRCLE_BRANCH" == "maint/0.15" ]; then
63+
elif [ "$CIRCLE_BRANCH" == "maint/0.16" ]; then
6464
echo html_stable > build.txt;
6565
else
6666
FNAMES=$(git diff --name-only $CIRCLE_BRANCH $(git merge-base $CIRCLE_BRANCH upstream/master));
@@ -195,7 +195,7 @@ jobs:
195195
pushd ~/mne-tools.github.io && git checkout master && git pull origin master && popd;
196196
pushd doc/_build && rm -Rf ~/mne-tools.github.io/dev && cp -a html ~/mne-tools.github.io/dev && popd;
197197
pushd ~/mne-tools.github.io && git add -A && git commit -m "CircleCI update of dev docs (${CIRCLE_BUILD_NUM})." && git push origin master && popd;
198-
elif [ "${CIRCLE_BRANCH}" == "maint/0.15" ]; then
198+
elif [ "${CIRCLE_BRANCH}" == "maint/0.16" ]; then
199199
echo "Deploying stable docs.";
200200
git config --global user.email "[email protected]";
201201
git config --global user.name "Circle Ci";

mne/__init__.py

Lines changed: 1 addition & 1 deletion
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.16.dev0'
19+
__version__ = '0.16.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)