Merged
Show file tree
Hide file tree
Changes from all commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Failed to load files.
Original file line numberDiff line numberDiff line change
Expand Up@@ -10,6 +10,7 @@ Alexander Schaefer <[email protected]> <[email protected]>
Alexander Schaefer <[email protected]> <aschaefer@aschaefer-U36SD.(none)>
Alexandre M. Savio <[email protected]>
Alexandre M. Savio <[email protected]> <[email protected]>
Andrea Dell'Orco <[email protected]>
Andrew Floren <[email protected]>
Andrey Chetverikov <[email protected]>
Andrey Chetverikov <[email protected]> <[email protected]>
Expand DownExpand Up@@ -144,6 +145,7 @@ Michael Waskom <[email protected]> <[email protected]>
Miguel Molina-Romero <[email protected]>
Murat Bilgel <[email protected]> <[email protected]>
Nat Lee <[email protected]>
Ole Numssen <[email protected]>
Oliver Contier <[email protected]> <[email protected]>
Olivia Stanley <[email protected]>
Oscar Esteban <[email protected]>
Expand Down
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1.7.0 (October 20, 2021)
========================

(`Full changelog <https://.com/nipy/nipype/milestone/1.7.0?closed=1>`__)

* FIX: Make ants.LaplacianThickness output_image a string, not file (https://.com/nipy/nipype/pull/3393)
* FIX: coord for mrconvert (https://.com/nipy/nipype/pull/3369)
* FIX: ``antsRegistration`` allows the ``restrict_deformation`` to be float (https://.com/nipy/nipype/pull/3387)
* FIX: Also allow `errno.EBUSY` during `emptydirs` on NFS (https://.com/nipy/nipype/pull/3357)
* FIX: Removed exists=True from MathsOutput (https://.com/nipy/nipype/pull/3385)
* FIX: Extension not extensions, after pybids v0.9 (https://.com/nipy/nipype/pull/3380)
* ENH: Add CAT12 SANLM denoising filter (https://.com/nipy/nipype/pull/3374)
* ENH: Add expected steps for FreeSurfer 7 recon-all (https://.com/nipy/nipype/pull/3389)
* ENH: Stop printing false positive differences when logging cached nodes (https://.com/nipy/nipype/pull/3376)
* ENH: Add new flags to MRtrix/preprocess.py (DWI2Tensor, MRtransform) (https://.com/nipy/nipype/pull/3365)
* ENH: ``verbose`` input should not be hashed in ``ants.Registration`` (https://.com/nipy/nipype/pull/3377)
* REF: Clean-up the BaseInterface ``run()`` function using context (https://.com/nipy/nipype/pull/3347)
* DOC: Fix typo in README (https://.com/nipy/nipype/pull/3386)
* STY: Make private member name consistent with the rest of them (https://.com/nipy/nipype/pull/3346)
* MNT: Simplify interface execution and better error handling of ``Node`` (https://.com/nipy/nipype/pull/3349)
* MNT: Add user name and email to Docker to appease git/annex/datalad (https://.com/nipy/nipype/pull/3378)
* CI: Update CircleCI machine image (https://.com/nipy/nipype/pull/3391)

1.6.1 (June 16, 2021)
=====================

Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -8,7 +8,7 @@ Interfaces and Workflows
:Release: |version|
:Date: |today|

Previous versions: `1.6.0 <http://nipype.readthedocs.io/en/1.6.0/>`_ `1.5.1 <http://nipype.readthedocs.io/en/1.5.1/>`_
Previous versions: `1.6.1 <http://nipype.readthedocs.io/en/1.6.1/>`_ `1.6.0 <http://nipype.readthedocs.io/en/1.6.0/>`_

Workflows
---------
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -5,7 +5,7 @@

# nipype version information
# Remove -dev for release
__version__ = "1.6.1"
__version__ = "1.7.0"


def get_nipype_gitversion():
Expand Down