From 9e472df38a7d84c17f763dfcbea150aa9eab6153 Mon Sep 17 00:00:00 2001 From: Chris Markiewicz Date: Thu, 9 Nov 2023 11:29:59 -0500 Subject: [PATCH 1/3] DOC: 2.6.0 changelog --- CHANGES.rst | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/CHANGES.rst b/CHANGES.rst index 783f0ba195..b1695d01f5 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,27 @@ +2.6.0 (November 09, 2023) +========================= +New feature release in the 2.6.0 series. + +This release resolves a number of issues with fieldmaps inducing distortions +during correction. Phase difference and direct fieldmaps are now masked correctly, +preventing the overestimation of distortions outside the brain. Additionally, +we now implement Jacobian weighting during unwarping, which corrects for compression +and expansion effects on signal intensity. + +* FIX: Mask fieldmap before fitting spline field (#396) +* FIX: Interpolate to floating point values (#394) +* FIX: Refactoring the ``B0FieldTransform`` implementation (#346) +* FIX: Nipype workflows like to be passed absolute paths (phasediff fieldmap) (#374) +* ENH: Implement Jacobian weighting during unwarp (#391) +* ENH: Output target2fmap_xfm from coeff2epi_wf (#381) +* ENH: Add data loader to sdcflows.data, drop pkg_resources (#379) +* RF: Use scipy.interpolate.BSpline to construct spline basis (#393) +* DOC: Use latest sphinx to fix bad sphinx/furo interaction (#390) +* DOC: Fix missing dependency when merging new data loader (#380) +* MNT: Update emprical values in test to allow transition to new scipy's BSpline (#387) +* MNT: Add pre-commit config (#375) +* MNT: Add a seed to random generator of coefficients (#368) + 2.5.2 (November 09, 2023) ========================= Bug-fix release in the 2.5.x series. From a42caa315b3b36288627756bdf374b2d8aabac85 Mon Sep 17 00:00:00 2001 From: Chris Markiewicz Date: Thu, 9 Nov 2023 11:34:44 -0500 Subject: [PATCH 2/3] Update Zenodo --- .zenodo.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.zenodo.json b/.zenodo.json index 7dae752c46..32c58d7fab 100644 --- a/.zenodo.json +++ b/.zenodo.json @@ -8,14 +8,14 @@ "name": "Oscar Esteban" }, { - "orcid": "0000-0002-7252-7771", + "orcid": "0000-0002-6533-164X", "affiliation": "Department of Psychology, Stanford University, CA, USA", - "name": "Mathias Goncalves" + "name": "Christopher J. Markiewicz" }, { - "orcid": "0000-0002-6533-164X", + "orcid": "0000-0002-7252-7771", "affiliation": "Department of Psychology, Stanford University, CA, USA", - "name": "Christopher J. Markiewicz" + "name": "Mathias Goncalves" } ], "contributors": [ From 7288b5113411879fd35aab53b865a4924828d0f2 Mon Sep 17 00:00:00 2001 From: Chris Markiewicz Date: Fri, 10 Nov 2023 09:36:41 -0500 Subject: [PATCH 3/3] Update CHANGES.rst --- CHANGES.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index b1695d01f5..f0660f1c00 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,4 +1,4 @@ -2.6.0 (November 09, 2023) +2.6.0 (November 10, 2023) ========================= New feature release in the 2.6.0 series.