Skip to content

Commit

Permalink
REL: 0.3 (#261)
Browse files Browse the repository at this point in the history
* add authors to current release

* bump stable docs version in circleci

* bump mne_bids version

* fix url: mne-tools.github.io -> mne.tools

* https for mne.tools

* update URLs in setup py
  • Loading branch information
sappelhoff committed Aug 20, 2019
1 parent 91b8fde commit 1f31f0c
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
name: github pages deployment
command: |
source activate testenv
if [ "${CIRCLE_BRANCH}" == "maint/0.2" ]; then
if [ "${CIRCLE_BRANCH}" == "maint/0.3" ]; then
echo "Deploying stable docs for ${CIRCLE_BRANCH}.";
git config --global user.email "[email protected]";
git config --global user.name "Circle Ci";
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ MNE-BIDS

This is a repository for creating
`BIDS <http://bids.neuroimaging.io/>`_\ -compatible datasets with
`MNE <https://mne-tools.github.io/stable/index.html>`_.
`MNE <https://mne.tools/stable/index.html>`_.

The documentation can be found under the following links:

- for the `stable release <https://mne-tools.github.io/mne-bids/>`_
- for the `stable release <https://mne.tools/mne-bids/>`_
- for the `latest (development) version <https://circleci.com/api/v1.1/project/github/mne-tools/mne-bids/latest/artifacts/0/html/index.html?branch=master>`_

Installation
Expand Down
2 changes: 1 addition & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@
# Example configuration for intersphinx: refer to the Python standard library.
intersphinx_mapping = {
'python': ('https://docs.python.org/3', None),
'mne': ('http://mne-tools.github.io/stable/', None),
'mne': ('https://mne.tools/stable/', None),
'numpy': ('https://www.numpy.org/devdocs', None),
'scipy': ('https://scipy.github.io/devdocs', None),
'matplotlib': ('https://matplotlib.org', None),
Expand Down
18 changes: 15 additions & 3 deletions doc/whats_new.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ Here we list a changelog of MNE-BIDS.

.. currentmodule:: mne_bids

.. _current:
.. _changes_0_3:

Current
-------
Version 0.3
-----------

Changelog
~~~~~~~~~
Expand Down Expand Up @@ -45,6 +45,18 @@ API

- :func:`read_raw_bids` no longer optionally returns :code:`events` and :code:`event_id` but returns the raw object with :code:`mne.Annotations`, whenever an :code:`events.tsv` file is present, by `Stefan Appelhoff`_ (`#209 <https://github.com/mne-tools/mne-bids/pull/209>`_)

Authors
~~~~~~~

People who contributed to this release (in alphabetical order):

* Alexandre Gramfort
* Mainak Jas
* Marijn van Vliet
* Matt Sanderson
* Stefan Appelhoff
* Teon Brooks

.. _changes_0_2:

Version 0.2
Expand Down
2 changes: 1 addition & 1 deletion mne_bids/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""MNE software for easily interacting with BIDS compatible datasets."""

__version__ = '0.2.dev0'
__version__ = '0.3'


from mne_bids.write import (write_raw_bids, make_bids_folders, make_bids_basename, # noqa: E501 F401
Expand Down
11 changes: 8 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@
DESCRIPTION = descr
MAINTAINER = 'Mainak Jas'
MAINTAINER_EMAIL = '[email protected]'
URL = 'https://mne-tools.github.io/mne-bids/'
URL = 'https://mne.tools/mne-bids/'
LICENSE = 'BSD (3-clause)'
DOWNLOAD_URL = 'http://github.com/mne-tools/mne-bids'
DOWNLOAD_URL = 'https://github.com/mne-tools/mne-bids.git'
VERSION = version

if __name__ == "__main__":
Expand Down Expand Up @@ -51,5 +51,10 @@
],
platforms='any',
packages=find_packages(),
scripts=['bin/mne_bids']
scripts=['bin/mne_bids'],
project_urls={
'Documentation': 'https://mne.tools/mne-bids',
'Bug Reports': 'https://github.com/mne-tools/mne-bids/issues',
'Source': 'https://github.com/mne-tools/mne-bids',
},
)

0 comments on commit 1f31f0c

Please sign in to comment.