Skip to content

Commit

Permalink
[release][DOC] Bump mne version to 0.19 and update navbar (#6817)
Browse files Browse the repository at this point in the history
updates whats new from current to 0.19
updates navbar
  • Loading branch information
massich committed Sep 24, 2019
1 parent b0ea04b commit 3247bd1
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ jobs:
if [ "$CIRCLE_BRANCH" == "master" ] || [[ $(cat gitlog.txt) == *"[circle full]"* ]]; then
echo html_dev > build.txt;
python -c "import mne; mne.datasets._download_all_example_data()";
elif [ "$CIRCLE_BRANCH" == "maint/0.18" ]; then
elif [ "$CIRCLE_BRANCH" == "maint/0.19" ]; then
echo html_stable > build.txt;
python -c "import mne; mne.datasets._download_all_example_data()";
else
Expand Down Expand Up @@ -362,7 +362,7 @@ jobs:
name: Deploy docs
command: |
set -e;
if [ "${CIRCLE_BRANCH}" == "master" ] || [ "${CIRCLE_BRANCH}" == "maint/0.18" ]; then
if [ "${CIRCLE_BRANCH}" == "master" ] || [ "${CIRCLE_BRANCH}" == "maint/0.19" ]; then
git config --global user.email "circle@mne.com";
git config --global user.name "Circle CI";
cd ~/mne-tools.github.io;
Expand Down
3 changes: 2 additions & 1 deletion doc/_templates/navbar.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
</button>
<ul class="dropdown-menu" aria-labelledby="dropdownMenu1">
<li><a href="https://mne-tools.github.io/dev/index.html">Development</a></li>
<li><a href="https://mne-tools.github.io/stable/index.html">v0.18 (stable)</a></li>
<li><a href="https://mne-tools.github.io/stable/index.html">v0.19 (stable)</a></li>
<li><a href="https://mne-tools.github.io/stable/index.html">v0.18</a></li>
<li><a href="https://mne-tools.github.io/0.17/index.html">v0.17</a></li>
<li><a href="https://mne-tools.github.io/0.16/index.html">v0.16</a></li>
<li><a href="https://mne-tools.github.io/0.15/index.html">v0.15</a></li>
Expand Down
6 changes: 3 additions & 3 deletions doc/changes/latest.inc → doc/changes/0.19.inc
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
- "Bug" for bug fixes
- "API" for backward-incompatible changes

.. _current:
.. _changes_0_19:

Current (0.19.dev0)
-------------------
Version 0.19
------------

Changelog
~~~~~~~~~
Expand Down
2 changes: 1 addition & 1 deletion doc/whats_new.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ What's new

.. currentmodule:: mne

.. include:: changes/latest.inc
.. include:: changes/0.19.inc
.. include:: changes/0.18.inc
.. include:: changes/0.17.inc
.. include:: changes/0.16.inc
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.19.dev0'
__version__ = '0.19.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 3247bd1

Please sign in to comment.