Skip to content

Commit

Permalink
MAINT: Version
Browse files Browse the repository at this point in the history
  • Loading branch information
larsoner committed Dec 17, 2020
1 parent f997905 commit 894606e
Show file tree
Hide file tree
Showing 6 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 @@ -305,7 +305,7 @@ jobs:
name: Deploy docs
command: |
set -e;
if [ "${CIRCLE_BRANCH}" == "master" ] || [ "${CIRCLE_BRANCH}" == "maint/0.21" ]; then
if [ "${CIRCLE_BRANCH}" == "master" ] || [ "${CIRCLE_BRANCH}" == "maint/0.22" ]; then
git config --global user.email "[email protected]";
git config --global user.name "Circle CI";
cd ~/mne-tools.github.io;
Expand Down Expand Up @@ -384,7 +384,7 @@ workflows:
branches:
only:
- master
- maint/0.21
- maint/0.22
# interactive_test

weekly:
Expand Down
6 changes: 3 additions & 3 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ without a proper 6-month deprecation cycle.

| Version | Supported |
| ------- | ------------------------ |
| 0.22.x | :heavy_check_mark: (dev) |
| 0.21.x | :heavy_check_mark: |
| < 0.21 | :x: |
| 0.23.x | :heavy_check_mark: (dev) |
| 0.22.x | :heavy_check_mark: |
| < 0.22 | :x: |

## Reporting a Vulnerability

Expand Down
3 changes: 2 additions & 1 deletion doc/_templates/navbar.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@
</button>
<ul class="dropdown-menu" aria-labelledby="dLabelMore">
<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.21 (stable)</a></li>
<li><a href="https://mne-tools.github.io/stable/index.html">v0.22 (stable)</a></li>
<li><a href="https://mne-tools.github.io/0.21/index.html">v0.21</a></li>
<li><a href="https://mne-tools.github.io/0.20/index.html">v0.20</a></li>
<li><a href="https://mne-tools.github.io/0.19/index.html">v0.19</a></li>
<li><a href="https://mne-tools.github.io/0.18/index.html">v0.18</a></li>
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion doc/whats_new.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ What's new

.. currentmodule:: mne

.. include:: changes/latest.inc
.. include:: changes/0.22.inc
.. include:: changes/0.21.inc
.. include:: changes/0.20.inc
.. include:: changes/0.19.inc
Expand Down
2 changes: 1 addition & 1 deletion mne/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
#
# License: BSD (3-clause)

__version__ = '0.22.dev0'
__version__ = '0.22.0'

0 comments on commit 894606e

Please sign in to comment.