Skip to content

Commit

Permalink
update version number to 0.14
Browse files Browse the repository at this point in the history
  • Loading branch information
agramfort committed Mar 22, 2017
1 parent 8b1087a commit f6bd211
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
4 changes: 2 additions & 2 deletions circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ dependencies:
- PATTERN="";
if [ "$CIRCLE_BRANCH" == "master" ] || [[ `git log -1 --pretty=%B` == *"[circle full]"* ]]; then
echo html_dev > build.txt;
elif [ "$CIRCLE_BRANCH" == "maint/0.13" ]; then
elif [ "$CIRCLE_BRANCH" == "maint/0.14" ]; 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 @@ -148,7 +148,7 @@ deployment:
- cd doc/_build/html && cp -rf * ~/mne-tools.github.io/dev
- cd ../mne-tools.github.io && git add -A && git commit -m 'Automated update of dev docs.' && git push origin master
stable:
branch: maint/0.13
branch: maint/0.14
commands:
- git config --global user.email "[email protected]"
- git config --global user.name "Circle Ci"
Expand Down
6 changes: 4 additions & 2 deletions doc/whats_new.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,10 @@ MNE-Python Code Updates
.. currentmodule:: mne

Current
-------
.. _changes_0_14:

Version 0.14
------------

Changelog
~~~~~~~~~
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.14.dev0'
__version__ = '0.14'

# 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 f6bd211

Please sign in to comment.