Skip to content

Commit cd2a87b

Browse files
committed
Merge tag '0.12.1'
0.12.1 (June 15, 2023) Bug-fix release in the 0.12.x series. This release correctly generates ``*_space-fsLR_desc-reg_sphere.surf.gii``, which was previously a copy of the standard ``*_desc-reg_sphere.surf.gii``. * FIX: Pass sphere_reg_fsLR to ds_reg_fsLR (#350)
2 parents 6419e7d + dcc5a44 commit cd2a87b

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

CHANGES.rst

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
0.12.1 (June 15, 2023)
2+
======================
3+
Bug-fix release in the 0.12.x series.
4+
5+
This release correctly generates ``*_space-fsLR_desc-reg_sphere.surf.gii``,
6+
which was previously a copy of the standard ``*_desc-reg_sphere.surf.gii``.
7+
8+
* FIX: Pass sphere_reg_fsLR to ds_reg_fsLR (#350)
9+
10+
111
0.12.0 (June 05, 2023)
212
======================
313
New feature release in the 0.12.x series.

smriprep/workflows/outputs.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -730,8 +730,8 @@ def init_anat_derivatives_wf(
730730
(inputnode, ds_regs, [('sphere_reg', 'in_file'),
731731
('source_files', 'source_file')]),
732732
(name_regs, ds_regs, [('hemi', 'hemi')]),
733-
(inputnode, name_reg_fsLR, [('sphere_reg', 'in_file')]),
734-
(inputnode, ds_reg_fsLR, [('sphere_reg', 'in_file'),
733+
(inputnode, name_reg_fsLR, [('sphere_reg_fsLR', 'in_file')]),
734+
(inputnode, ds_reg_fsLR, [('sphere_reg_fsLR', 'in_file'),
735735
('source_files', 'source_file')]),
736736
(name_reg_fsLR, ds_reg_fsLR, [('hemi', 'hemi')]),
737737
(inputnode, name_morphs, [('morphometrics', 'in_file')]),

0 commit comments

Comments
 (0)