From 20cd463f274f6d09fde1dedeea284775d9d1e70a Mon Sep 17 00:00:00 2001 From: Daniel McCloy Date: Wed, 19 Oct 2022 14:50:45 -0500 Subject: [PATCH] release 1.2.1 [circle deploy] update changelog bump version update citation & codemeta --- CITATION.cff | 6 +++--- codemeta.json | 6 +++--- doc/changes/1.2.inc | 10 ++++++++++ mne/_version.py | 2 +- 4 files changed, 17 insertions(+), 7 deletions(-) diff --git a/CITATION.cff b/CITATION.cff index 09758fec286..ee451efcada 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -1,9 +1,9 @@ cff-version: 1.2.0 title: "MNE-Python" message: "If you use this software, please cite both the software itself, and the paper listed in the preferred-citation field." -version: 1.2.0 -date-released: "2022-10-11" -commit: e985dd29308c57793c83d7120090256c24bc91e6 +version: 1.2.1 +date-released: "2022-10-19" +commit: 57e6fd31b548544e85364b3f1045b3ffd8b07993 doi: 10.5281/zenodo.592483 keywords: - MEG diff --git a/codemeta.json b/codemeta.json index 20d4d62fa1d..0d44ca97f0d 100644 --- a/codemeta.json +++ b/codemeta.json @@ -5,11 +5,11 @@ "codeRepository": "git+https://github.com/mne-tools/mne-python.git", "dateCreated": "2010-12-26", "datePublished": "2014-08-04", - "dateModified": "2022-10-11", - "downloadUrl": "https://github.com/mne-tools/mne-python/archive/v1.2.0.zip", + "dateModified": "2022-10-19", + "downloadUrl": "https://github.com/mne-tools/mne-python/archive/v1.2.1.zip", "issueTracker": "https://github.com/mne-tools/mne-python/issues", "name": "MNE-Python", - "version": "1.2.0", + "version": "1.2.1", "description": "MNE-Python is an open-source Python package for exploring, visualizing, and analyzing human neurophysiological data. It provides methods for data input/output, preprocessing, visualization, source estimation, time-frequency analysis, connectivity analysis, machine learning, and statistics.", "applicationCategory": "Neuroscience", "developmentStatus": "active", diff --git a/doc/changes/1.2.inc b/doc/changes/1.2.inc index 813fd226cf8..63c69803b80 100644 --- a/doc/changes/1.2.inc +++ b/doc/changes/1.2.inc @@ -16,6 +16,16 @@ Also add a corresponding entry for yourself in doc/changes/names.inc +.. _changes_1_2_1: + +Version 1.2.1 (2022-10-19) +-------------------------- + +Bugs +---- +- Fix bug in the ``.compute_psd()`` methods where the number of unaggregated Welch segments was wrongly computed for some inputs, leading to an assertion error when computing the PSD (:gh:`11248` by `Daniel McCloy`_) + + .. _changes_1_2_0: Version 1.2.0 (2022-10-11) diff --git a/mne/_version.py b/mne/_version.py index 84696028478..82996a44dd4 100644 --- a/mne/_version.py +++ b/mne/_version.py @@ -3,4 +3,4 @@ # # License: BSD-3-Clause -__version__ = '1.2.0' +__version__ = '1.2.1'