Skip to content

Commit f3d1317

Browse files
committed
DOC: Update changelog
1 parent c14f24e commit f3d1317

File tree

2 files changed

+28
-1
lines changed

2 files changed

+28
-1
lines changed

doc/changelog/1.X.X-changelog

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,29 @@
1+
1.2.1 (August 19, 2019)
2+
=======================
3+
4+
##### [Full changelog](https://github.com/nipy/nipype/milestone/32?closed=1)
5+
6+
* FIX: Resolve/rebase paths from/to results files (https://github.com/nipy/nipype/pull/2971)
7+
* FIX: Use ``load_resultfile`` when loading a results pickle (https://github.com/nipy/nipype/pull/2985)
8+
* FIX: Incorrect extension identified when checking ``File`` traits (https://github.com/nipy/nipype/pull/2987)
9+
* FIX: Correctly pickle ``OuputMultiObject`` traits (https://github.com/nipy/nipype/pull/2983)
10+
* FIX: Improve output handling in DWIDenoise and DWIBiasCorrect (https://github.com/nipy/nipype/pull/2978)
11+
* FIX: Docker build (https://github.com/nipy/nipype/pull/2963)
12+
* FIX: Remove '=' signs from EddyQuad argument specifications (https://github.com/nipy/nipype/pull/2941)
13+
* FIX: Set input model to bedpostx for camino.TrackBedpostxProba (https://github.com/nipy/nipype/pull/2947)
14+
* FIX: Allow ``max_sh``not to be set (auto mode) (https://github.com/nipy/nipype/pull/2940)
15+
* ENH: Let ``indirectory`` handle ``nipype.utils.filemanip.Path`` (https://github.com/nipy/nipype/pull/2989)
16+
* ENH: Add resolve/rebase ``BasePath`` traits methods & tests (https://github.com/nipy/nipype/pull/2970)
17+
* ENH: Modify ``Directory`` and ``File`` traits to get along with pathlib (https://github.com/nipy/nipype/pull/2962)
18+
* REF: Update nipype2boutiques script (https://github.com/nipy/nipype/pull/2894)
19+
* TST: Parametrize JoinNode expansion tests over config ``needed_outputs`` (https://github.com/nipy/nipype/pull/2981)
20+
* MAINT: Pin lxml<4.4.0 for Python 3.4 (https://github.com/nipy/nipype/pull/2980)
21+
* MAINT: Refactor ``aggregate_outputs`` for readability (https://github.com/nipy/nipype/pull/2969)
22+
* MAINT: Bump neurodocker version (https://github.com/nipy/nipype/pull/2965)
23+
* MAINT: Various minor improvements to complement previous PR (https://github.com/nipy/nipype/pull/2964)
24+
* MAINT: Sort dependencies alphabetically (https://github.com/nipy/nipype/pull/2961)
25+
26+
127
1.2.0 (May 09, 2019)
228
====================
329

tools/update_changes.sh

100644100755
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
set -u # Treat unset variables as an error when substituting.
1313
set -x # Print command traces before executing command.
1414

15-
CHANGES=../doc/changelog/1.X.X-changelog
15+
ROOT=$( git rev-parse --show-toplevel )
16+
CHANGES=$ROOT/doc/changelog/1.X.X-changelog
1617

1718
# Check whether the Upcoming release header is present
1819
head -1 $CHANGES | grep -q Upcoming

0 commit comments

Comments
 (0)