Skip to content

Commit d71b067

Browse files
authored
Start v0.6 dev (#122)
- start developing v0.5 Signed-off-by: Adam Li <[email protected]>
1 parent fe3177c commit d71b067

File tree

3 files changed

+50
-27
lines changed

3 files changed

+50
-27
lines changed

doc/whats_new.rst

+5-26
Original file line numberDiff line numberDiff line change
@@ -16,49 +16,28 @@ Here we list a changelog of MNE-connectivity.
1616

1717
.. _current:
1818

19-
Version 0.5
20-
-----------
19+
Version 0.6 (unreleased)
20+
------------------------
2121

22-
This version has several improvements in the ``spectral`` connectivity analysis and some bug fixes. Functionality now requires ``mne>=1.3``
23-
for MNE-Python as a minimum version requirement.
24-
25-
This version has major changes in :func:`mne_connectivity.spectral_connectivity_time`. Several bugs are fixed, and the
26-
function now computes static connectivity over time, as opposed to static connectivity over trials computed by :func:`mne_connectivity.spectral_connectivity_epochs`.
2722

2823
Enhancements
2924
~~~~~~~~~~~~
3025

31-
- Add the ``PLI`` and ``wPLI`` methods in :func:`mne_connectivity.spectral_connectivity_time` by `Santeri Ruuskanen`_ (:pr:`104`).
32-
- Improve the documentation of :func:`mne_connectivity.spectral_connectivity_time` by `Santeri Ruuskanen`_ (:pr:`104`).
33-
- Add the option to average connectivity across epochs and frequencies in :func:`mne_connectivity.spectral_connectivity_time` by `Santeri Ruuskanen`_ (:pr:`104`).
34-
- Select multitaper frequencies automatically in :func:`mne_connectivity.spectral_connectivity_time` similarly to :func:`mne_connectivity.spectral_connectivity_epochs` by `Santeri Ruuskanen`_ (:pr:`104`).
35-
- Add the ``ciPLV`` method in :func:`mne_connectivity.spectral_connectivity_time` by `Santeri Ruuskanen`_ (:pr:`115`).
36-
- Add the option to use the edges of each epoch as padding in :func:`mne_connectivity.spectral_connectivity_time` by `Santeri Ruuskanen`_ (:pr:`115`).
26+
-
3727

3828
Bug
3929
~~~
4030

41-
- When using the ``multitaper`` mode in :func:`mne_connectivity.spectral_connectivity_time`, average CSD over tapers instead of the complex signal by `Santeri Ruuskanen`_ (:pr:`104`).
42-
- Average over time when computing connectivity measures in :func:`mne_connectivity.spectral_connectivity_time` by `Santeri Ruuskanen`_ (:pr:`104`).
43-
- Fix support for multiple connectivity methods in calls to :func:`mne_connectivity.spectral_connectivity_time` by `Santeri Ruuskanen`_ (:pr:`104`).
44-
- Fix bug with the ``indices`` parameter in :func:`mne_connectivity.spectral_connectivity_time`, the behavior is now as expected by `Santeri Ruuskanen`_ (:pr:`104`).
45-
- Fix bug with parallel computation in :func:`mne_connectivity.spectral_connectivity_time`, add instructions for memory mapping in doc by `Santeri Ruuskanen`_ (:pr:`104`).
46-
- Allow loading files that don't have ``event_id_keys`` and ``event_id_values`` defined, by `Daniel McCloy`_ (:pr:`110`)
47-
- Fix handling of the ``verbose`` argument by :func:`spectral_connectivity_epochs`, :func:`spectral_connectivity_time`, :func:`vector_auto_regression` by `Sam Steingold`_ (:pr:`111`)
31+
-
4832

4933
API
5034
~~~
5135

52-
- Streamline the API of :func:`mne_connectivity.spectral_connectivity_time` with :func:`mne_connectivity.spectral_connectivity_epochs` by `Santeri Ruuskanen`_ (:pr:`104`).
53-
- The ``sfreq`` parameter is now required for numpy array inputs to :func:`spectral_connectivity_epochs`, by `Adam Li`_ (:pr:`119`)
36+
-
5437

5538
Authors
5639
~~~~~~~
5740

58-
* `Santeri Ruuskanen`_
59-
* `Daniel McCloy`_
60-
* `Sam Steingold`_
61-
* `Adam Li`_
6241

6342
:doc:`Find out what was new in previous releases <whats_new_previous_releases>`
6443

doc/whats_new_previous_releases.rst

+44
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,50 @@
77
What was new in previous releases?
88
==================================
99

10+
Version 0.5 (2023-01-13)
11+
------------------------
12+
13+
This version has several improvements in the ``spectral`` connectivity analysis and some bug fixes. Functionality now requires ``mne>=1.3``
14+
for MNE-Python as a minimum version requirement.
15+
16+
This version has major changes in :func:`mne_connectivity.spectral_connectivity_time`. Several bugs are fixed, and the
17+
function now computes static connectivity over time, as opposed to static connectivity over trials computed by :func:`mne_connectivity.spectral_connectivity_epochs`.
18+
19+
Enhancements
20+
~~~~~~~~~~~~
21+
22+
- Add the ``PLI`` and ``wPLI`` methods in :func:`mne_connectivity.spectral_connectivity_time` by `Santeri Ruuskanen`_ (:pr:`104`).
23+
- Improve the documentation of :func:`mne_connectivity.spectral_connectivity_time` by `Santeri Ruuskanen`_ (:pr:`104`).
24+
- Add the option to average connectivity across epochs and frequencies in :func:`mne_connectivity.spectral_connectivity_time` by `Santeri Ruuskanen`_ (:pr:`104`).
25+
- Select multitaper frequencies automatically in :func:`mne_connectivity.spectral_connectivity_time` similarly to :func:`mne_connectivity.spectral_connectivity_epochs` by `Santeri Ruuskanen`_ (:pr:`104`).
26+
- Add the ``ciPLV`` method in :func:`mne_connectivity.spectral_connectivity_time` by `Santeri Ruuskanen`_ (:pr:`115`).
27+
- Add the option to use the edges of each epoch as padding in :func:`mne_connectivity.spectral_connectivity_time` by `Santeri Ruuskanen`_ (:pr:`115`).
28+
29+
Bug
30+
~~~
31+
32+
- When using the ``multitaper`` mode in :func:`mne_connectivity.spectral_connectivity_time`, average CSD over tapers instead of the complex signal by `Santeri Ruuskanen`_ (:pr:`104`).
33+
- Average over time when computing connectivity measures in :func:`mne_connectivity.spectral_connectivity_time` by `Santeri Ruuskanen`_ (:pr:`104`).
34+
- Fix support for multiple connectivity methods in calls to :func:`mne_connectivity.spectral_connectivity_time` by `Santeri Ruuskanen`_ (:pr:`104`).
35+
- Fix bug with the ``indices`` parameter in :func:`mne_connectivity.spectral_connectivity_time`, the behavior is now as expected by `Santeri Ruuskanen`_ (:pr:`104`).
36+
- Fix bug with parallel computation in :func:`mne_connectivity.spectral_connectivity_time`, add instructions for memory mapping in doc by `Santeri Ruuskanen`_ (:pr:`104`).
37+
- Allow loading files that don't have ``event_id_keys`` and ``event_id_values`` defined, by `Daniel McCloy`_ (:pr:`110`)
38+
- Fix handling of the ``verbose`` argument by :func:`spectral_connectivity_epochs`, :func:`spectral_connectivity_time`, :func:`vector_auto_regression` by `Sam Steingold`_ (:pr:`111`)
39+
40+
API
41+
~~~
42+
43+
- Streamline the API of :func:`mne_connectivity.spectral_connectivity_time` with :func:`mne_connectivity.spectral_connectivity_epochs` by `Santeri Ruuskanen`_ (:pr:`104`).
44+
- The ``sfreq`` parameter is now required for numpy array inputs to :func:`spectral_connectivity_epochs`, by `Adam Li`_ (:pr:`119`)
45+
46+
Authors
47+
~~~~~~~
48+
49+
* `Santeri Ruuskanen`_
50+
* `Daniel McCloy`_
51+
* `Sam Steingold`_
52+
* `Adam Li`_
53+
1054
Version 0.4 (2022-10-05)
1155
------------------------
1256

mne_connectivity/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#
77
# License: BSD (3-clause)
88

9-
__version__ = '0.5.0'
9+
__version__ = '0.6.0dev0'
1010

1111
from .base import (Connectivity, EpochConnectivity, EpochSpectralConnectivity,
1212
EpochSpectroTemporalConnectivity, EpochTemporalConnectivity,

0 commit comments

Comments
 (0)