diff --git a/circle.yml b/circle.yml index 6f6451163f1..d707d79d832 100644 --- a/circle.yml +++ b/circle.yml @@ -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)); @@ -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 "circle@mne.com" - git config --global user.name "Circle Ci" diff --git a/doc/whats_new.rst b/doc/whats_new.rst index 33e9ae99bc8..64f11dea940 100644 --- a/doc/whats_new.rst +++ b/doc/whats_new.rst @@ -11,8 +11,10 @@ MNE-Python Code Updates .. currentmodule:: mne -Current -------- +.. _changes_0_14: + +Version 0.14 +------------ Changelog ~~~~~~~~~ diff --git a/mne/__init__.py b/mne/__init__.py index 0369a1c9cfc..ae1d3bd7766 100644 --- a/mne/__init__.py +++ b/mne/__init__.py @@ -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,