Skip to content

Commit 1ea6392

Browse files
authored
Merge pull request #632 from nipy/rel/2.3.0
REL: 2.3.0
2 parents 0045ed4 + 12da3be commit 1ea6392

File tree

4 files changed

+53
-3
lines changed

4 files changed

+53
-3
lines changed

Changelog

+43
Original file line numberDiff line numberDiff line change
@@ -29,20 +29,63 @@ Upcoming Release
2929

3030
New features
3131
------------
32+
* TRK <=> TCK streamlines conversion CLI tools (pr/606) (MC, reviewed by CM)
3233
* Image slicing for SpatialImages (pr/550) (CM)
3334

3435
Enhancements
3536
------------
3637
* Simplfiy MGHImage and add footer fields (pr/569) (CM, reviewed by MB)
38+
* Force sform/qform codes to be ints, rather than numpy types (pr/575) (Paul
39+
McCarthy, reviewed by MB, CM)
40+
* Auto-fill color table in FreeSurfer annotation file (pr/592) (Paul McCarthy,
41+
reviewed by CM, MB)
42+
* Set default intent code for CIFTI2 images (pr/604) (Mathias Goncalves,
43+
reviewed by CM, Satra Ghosh, MB, Tim Coalson)
44+
* Raise informative error on empty files (pr/611) (Pradeep Raamana, reviewed
45+
by CM, MB)
46+
* Accept degenerate filenames such as ``.nii`` (pr/621) (Dimitri
47+
Papadopoulos-Orfanos, reviewed by Yaroslav Halchenko)
48+
* Take advantage of ``IndexedGzipFile`` ``drop_handles`` flag to release
49+
filehandles by default (pr/614) (Paul McCarthy, reviewed by CM, MB)
3750

3851
Bug fixes
3952
---------
53+
* Preserve first point of `LazyTractogram` (pr/588) (MC, reviewed by Nil
54+
Goyette, CM, MB)
55+
* Stop adding extraneous metadata padding (pr/593) (Jon Stutters, reviewed by
56+
CM, MB)
57+
* Accept lower-case orientation codes in TRK files (pr/600) (Kesshi Jordan,
58+
MB, reviewed by MB, MC, CM)
59+
* Annotation file reading (pr/592) (Paul McCarthy, reviewed by CM, MB)
60+
* Fix buffer size calculation in ArraySequence (pr/597) (Serge Koudoro,
61+
reviewed by MC, MB, Eleftherios Garyfallidis, CM)
62+
* Resolve ``UnboundLocalError`` in Python 3 (pr/607) (Jakub Kaczmarzyk,
63+
reviewed by MB, CM)
64+
* Do not crash on non-``ImportError`` failures in optional imports (pr/618)
65+
(Yaroslav Halchenko, reviewed by CM)
66+
* Return original array from ``get_fdata`` for array image, if no cast
67+
required (pr/638, MB, reviewed by CM)
4068

4169
Maintenance
4270
-----------
71+
* Use SSH address to use key-based auth (pr/587) (CM, reviewed by MB)
72+
* Fix doctests for numpy 1.14 array printing (pr/591) (MB, reviewed by CM)
73+
* Refactor for pydicom 1.0 API changes (pr/599) (MB, reviewed by CM)
74+
* Increase test coverage, remove unreachable code (pr/602) (CM, reviewed by
75+
Yaroslav Halchenko, MB)
76+
* Move ``nib-ls`` and other programs to a new cmdline module (pr/601, pr/615)
77+
(Chris Cheng, reviewed by MB, Yaroslav Halchenko)
78+
* Remove deprecated numpy indexing (EL, reviewed by CM)
79+
* Update documentation to encourage ``get_fdata`` over ``get_data`` (pr/637,
80+
MB, reviewed by CM)
4381

4482
API changes and deprecations
4583
----------------------------
84+
* Support for ``keep_file_open = 'auto'`` as a parameter to ``Opener()`` will
85+
be deprecated in 2.4, for removal in 3.0. Accordingly, support for
86+
``openers.KEEP_FILE_OPEN_DEFAULT = 'auto'`` will be dropped on the same
87+
schedule.
88+
* Drop-in support for ``indexed_gzip < 0.7`` has been removed.
4689

4790

4891
2.2.1 (Wednesday 22 November 2017)

doc/source/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
8787

8888
# General information about the project.
8989
project = u'NiBabel'
90-
copyright = u'2006-2017, %(MAINTAINER)s <%(AUTHOR_EMAIL)s>' % rel
90+
copyright = u'2006-2018, %(MAINTAINER)s <%(AUTHOR_EMAIL)s>' % rel
9191

9292
# The version info for the project you're documenting, acts as replacement for
9393
# |version| and |release|, also used in various other places throughout the

doc/source/index.rst

+7
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,13 @@ contributed code and discussion (in rough order of appearance):
8080
* Mark Hymers
8181
* Jasper J.F. van den Bosch
8282
* Bennet Fauber
83+
* Kesshi Jordan
84+
* Jon Stutters
85+
* Serge Koudoro
86+
* Christopher P. Cheng
87+
* Mathias Goncalves
88+
* Jakub Kaczmarzyk
89+
* Dimitri Papadopoulos Orfanos
8390

8491
License reprise
8592
===============

nibabel/info.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
_version_major = 2
2020
_version_minor = 3
2121
_version_micro = 0
22-
_version_extra = 'dev'
23-
# _version_extra = ''
22+
# _version_extra = 'dev'
23+
_version_extra = ''
2424

2525
# Format expected by setup.py and doc/source/conf.py: string of form "X.Y.Z"
2626
__version__ = "%s.%s.%s%s" % (_version_major,

0 commit comments

Comments
 (0)