Skip to content

Commit fb05168

Browse files
committed
Merge tag '23.1.1'
23.1.1 (June 14, 2023) Bug fix release in the 23.1.x series. This release corrects a small error that prevented the "goodvoxels" mask from being placed in the output directory if no FreeSurfer output spaces were specified. * FIX: Remove bad metadata input from ds_goodvoxels_mask (#3037)
2 parents 40988b2 + ff8ba97 commit fb05168

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

CHANGES.rst

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
23.1.1 (June 14, 2023)
2+
======================
3+
4+
Bug fix release in the 23.1.x series.
5+
6+
This release corrects a small error that prevented the "goodvoxels" mask from
7+
being placed in the output directory if no FreeSurfer output spaces were specified.
8+
9+
* FIX: Remove bad metadata input from ds_goodvoxels_mask (#3037)
10+
11+
112
23.1.0 (June 12, 2023)
213
======================
314
New feature release in the 23.1.x series.

fmriprep/workflows/bold/outputs.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -752,6 +752,7 @@ def init_func_derivatives_wf(
752752
space='T1w',
753753
desc='goodvoxels',
754754
suffix='mask',
755+
Type='ROI', # Metadata
755756
compress=True,
756757
dismiss_entities=("echo",),
757758
),
@@ -764,7 +765,7 @@ def init_func_derivatives_wf(
764765
(inputnode, ds_goodvoxels_mask, [
765766
('source_file', 'source_file'),
766767
('goodvoxels_mask', 'in_file'),
767-
('surf_refs', 'keys')]),
768+
]),
768769
])
769770
# fmt:on
770771

0 commit comments

Comments
 (0)