Skip to content

Commit 5e6d57b

Browse files
authored
Merge pull request #2633 from nipy/rel/1.1.0
rel: 1.1.0
2 parents 55920fe + 6ea9fdf commit 5e6d57b

File tree

4 files changed

+21
-4
lines changed

4 files changed

+21
-4
lines changed

doc/changelog/1.X.X-changelog

+17
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
1.1.0 (July 03, 2018)
2+
=====================
3+
4+
###### [Full changelog](https://github.com/nipy/nipype/milestone/21?closed=1)
5+
6+
* RF: Futures-based MultiProc (https://github.com/nipy/nipype/pull/2598)
7+
* FIX: Avoid closing file descriptors on Windows (https://github.com/nipy/nipype/pull/2617)
8+
* MAINT: Play nice with external logging (https://github.com/nipy/nipype/pull/2611)
9+
* MAINT: Remove ignore_exception and terminal_output traits from input specs (https://github.com/nipy/nipype/pull/2618)
10+
* MAINT: Converge autotest names (https://github.com/nipy/nipype/pull/2610)
11+
* ENH: Add versioning metadata to crash files (https://github.com/nipy/nipype/pull/2626)
12+
* ENH add -dsort option to TProject (https://github.com/nipy/nipype/pull/2623)
13+
* ENH: Add Rescale interface (https://github.com/nipy/nipype/pull/2599)
14+
* DOC: Improve documentation for ANTs/FSL interfaces (https://github.com/nipy/nipype/pull/2593)
15+
* CI: Stop using Miniconda on Travis (https://github.com/nipy/nipype/pull/2600)
16+
* CI: Add PyPI validation on rel/* branches (https://github.com/nipy/nipype/pull/2603)
17+
118
1.0.4 (May 29, 2018)
219
====================
320

doc/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
# The short X.Y version.
8383
version = nipype.__version__
8484
# The full version, including alpha/beta/rc tags.
85-
release = "1.0.4"
85+
release = "1.1.0"
8686

8787
# The language for content autogenerated by Sphinx. Refer to documentation
8888
# for a list of supported languages.

nipype/info.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# full release. '.dev' as a version_extra string means this is a development
1212
# version
1313
# Remove -dev for release
14-
__version__ = '1.1.0-dev'
14+
__version__ = '1.1.0'
1515

1616

1717
def get_nipype_gitversion():

nipype/interfaces/ants/tests/test_auto_AntsJointFusion.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ def test_AntsJointFusion_inputs():
5252
hash_files=False,
5353
),
5454
out_label_post_prob_name_format=dict(
55-
requires=['out_label_fusion',
56-
'out_intensity_fusion_name_format'], ),
55+
requires=['out_label_fusion', 'out_intensity_fusion_name_format'],
56+
),
5757
patch_metric=dict(argstr='-m %s', ),
5858
patch_radius=dict(
5959
argstr='-p %s',

0 commit comments

Comments
 (0)