Skip to content

Commit f6bd211

Browse files
committed
update version number to 0.14
1 parent 8b1087a commit f6bd211

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

circle.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ dependencies:
6060
- PATTERN="";
6161
if [ "$CIRCLE_BRANCH" == "master" ] || [[ `git log -1 --pretty=%B` == *"[circle full]"* ]]; then
6262
echo html_dev > build.txt;
63-
elif [ "$CIRCLE_BRANCH" == "maint/0.13" ]; then
63+
elif [ "$CIRCLE_BRANCH" == "maint/0.14" ]; then
6464
echo html_stable > build.txt;
6565
else
6666
FNAMES=$(git diff --name-only $CIRCLE_BRANCH $(git merge-base $CIRCLE_BRANCH upstream/master));
@@ -148,7 +148,7 @@ deployment:
148148
- cd doc/_build/html && cp -rf * ~/mne-tools.github.io/dev
149149
- cd ../mne-tools.github.io && git add -A && git commit -m 'Automated update of dev docs.' && git push origin master
150150
stable:
151-
branch: maint/0.13
151+
branch: maint/0.14
152152
commands:
153153
- git config --global user.email "[email protected]"
154154
- git config --global user.name "Circle Ci"

doc/whats_new.rst

+4-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,10 @@ MNE-Python Code Updates
1111
1212
.. currentmodule:: mne
1313

14-
Current
15-
-------
14+
.. _changes_0_14:
15+
16+
Version 0.14
17+
------------
1618

1719
Changelog
1820
~~~~~~~~~

mne/__init__.py

+1-1
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.14.dev0'
19+
__version__ = '0.14'
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)